Codebase list libvirt-glib / 869ec4d
New upstream version 3.0.0 Guido Günther 4 years ago
307 changed file(s) with 11798 addition(s) and 9569 deletion(s). Raw diff Collapse all Expand all
0 2019-11-26 Daniel P. Berrangé <berrange@redhat.com>
1
2 Bump version & update NEWS for 3.0.0 release
3
4 2019-10-01 Fabiano Fidêncio <fidencio@redhat.com>
5
6 gconfig-domain-video: Add bochs video device
7 https://bugzilla.redhat.com/show_bug.cgi?id=1753670
8
9 Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
10
11 2019-09-05 Fabiano Fidêncio <fidencio@redhat.com>
12
13 tests,test-gconfig: Check _domain_os_get_machine()
14 Let's add one more simple check for gvir_config_domain_os_get_machine().
15
16 Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
17
18 gconfig: Add _domain_os_get_firmware()
19 Add a way to get the value of <os firmware="bios|efi"/> which has been
20 set to the domain XML.
21
22 Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
23
24 2019-08-19 Daniel P. Berrangé <berrange@redhat.com>
25
26 Set desired glib min/max API versions
27 Setting GLIB_VERSION_MAX_ALLOWED ensures we get warnings if
28 we use APIs that are newer than our declared minimum glib
29 version.
30
31 Setting GLIB_VERSION_MIN_REQUIRED ensures that we get
32 warnings if we use APIs deprecated in versions preceeding
33 this.
34
35 If the latter is omitted then we get warnings for all
36 deprecations in glib, which is undesirable if we want to
37 keep compat with older versions.
38
39 This avoids a build error with latest glib
40
41 ./../libvirt-gconfig/libvirt-gconfig-capabilities-cpu-model.c: In function 'gvir_config_capabilities_cpu_model_init':
42 ../../libvirt-gconfig/libvirt-gconfig-capabilities-cpu-model.c:44:13: error: G_ADD_PRIVATE [-Werror]
43 44 | model->priv = GVIR_CONFIG_CAPABILITIES_CPU_MODEL_GET_PRIVATE(model);
44 | ^~~~~~~~~~~~~~~
45
46 Caused by G_TYPE_INSTANCE_GET_PRIVATE being deprecated.
47
48 Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
49
50 gobject: remove use of G_PARAM_PRIVATE
51 This enum field is a deprecated synonym for G_PARAM_STATIC_NAME
52 which is already set by G_PARAM_STATIC_STRINGS.
53
54 Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
55
56 2019-05-27 Fabiano Fidêncio <fidencio@redhat.com>
57
58 gtk-doc.make: Remove the file
59 Now that we're using gtkdocisze as part of autogen.sh, there's no reason
60 to keep our own gtk-doc.make file.
61
62 Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
63
64 autogen.sh: Simplify autogen.sh
65 Let's use an autogen.sh based on libosinfo's one, which is cleaner and
66 matches the current GNOME guidelines.
67
68 Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
69
70 docs: explicitly link against libvirt-g{config,lib,object}
71 Let's explicitly link against the built libvirt-gconfig, libvirt-glib,
72 and libvirt-gobject libtool files for introspecting the gobjects.
73
74 In case it's *not* done we can run into some issues when where we try to
75 link against installed library, causing failures related to undefined
76 reference of the new symbols.
77
78 Reviewed-by: Andrea Bolognani <abologna@redhat.com>
79
80 2019-05-23 Fabiano Fidêncio <fidencio@redhat.com>
81
82 event-test: Change sha-bang line to use python3
83 Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
84 Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
85
86 event-test: Handle exceptions in a py3 compatible way
87 Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
88 Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
89
90 event-test: Use print() in a py3 compatible way
91 Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
92 Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
93
94 event-test: Ensure the right versions of LibvirtGLib and Gtk get loaded
95 Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
96 Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
97
98 event-test: Don't use ";" in the end of lines
99 Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
100 Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
101
102 event-test: LibvirtGLib.init() takes (at maximum) 1 argment
103 The previous behaviour with pygobject required 2 arguments to be passed
104 to LibvirtGLib.init().
105
106 As it's been changed, whenever we try to run event-test we'd get:
107 ```
108 Using uri:qemu:///system
109 Traceback (most recent call last):
110 File "event-test.py", line 62, in <module>
111 main()
112 File "event-test.py", line 51, in main
113 LibvirtGLib.init(0, "")
114 TypeError: LibvirtGLib.init() takes exactly 1 argument (2 given)
115 ```
116
117 Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
118 Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
119
120 2019-05-20 Fabiano Fidêncio <fidencio@redhat.com>
121
122 conn-test: Change sha-bang line to use python3
123 Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
124 Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
125
126 conn-test: Handle exceptions in a py3 compatible way
127 Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
128 Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
129
130 conn-test: Use print() in a py3 compatible way
131 Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
132 Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
133
134 conn-test: Ensure the right versions of LibvirtGObject and Gtk get loaded
135 Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
136 Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
137
138 conn-test: Don't use ";" in the end of lines
139 Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
140 Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
141
142 config-demo: Change sha-bang line to use python3
143 Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
144 Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
145
146 config-demo: Use octal when setting mode
147 Basically, just change 0744 to 0o744 in order to be compatible with
148 python3.
149
150 Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
151 Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
152
153 config-demo: Use print() in a py3 compatible way
154 Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
155 Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
156
157 config-demo: Ensure the right LibvirtGConfig version gets loaded
158 Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
159 Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
160
161 config-demo: Don't use ";" in the end of lines
162 Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
163 Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
164
165 gobject: Wrap virConnectGetDomainCapabilities()
166 In order to do so, 3 new APIs have been added:
167 - gvir_connection_get_domain_capabilities();
168 - gvir_connection_get_domain_capabilities_async();
169 - gvir_connection_get_domain_capabilities_finish();
170
171 The returned object is a GVirConfigDomainCapabilities, from which
172 consumers will be able to access a few other objects representing the
173 XML returned by virConnectGetDomainCapabilities().
174
175 Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
176
177 tests: Add basic test for domain capabilities
178 This basic test only ensures that we can properly parse:
179 <domainCapabilities>
180 <os>
181 <enum name="firmeware">
182 <value>bios</value>
183 <value>efi</value>
184 </enum>
185 </os>
186 </domainCapabilities>
187
188 Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
189
190 gconfig: Add _domain_capabilities_os_get_firmwares()
191 Add a way to access the <enum name="firmware"/> element's conent from
192 <os/>.
193
194 Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
195
196 gconfig: Add _domain_capabilities_get_os()
197 Add a way to access the object which represents the <os/> element from
198 the <domainCapabilities/>.
199
200 Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
201
202 gconfig: Add GVirConfigDomainCapabilitiesOs
203 GVirConfigDomainCapabilitiesOs object has been introduced in order to
204 represent the <os/> element under <domainCapabilities/>.
205
206 For now it's not used anywhere, but it's addition allows us to start
207 building the needed machinery for:
208 - Returning a representation os <os/> element;
209 - Having the most basic machinery to start adding functions to return
210 any child element we may need to query from <os/> element;
211
212 Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
213
214 gconfig: Add GVirConfigDomainCapabilities
215 GVirConfigDomainCapabilities object has been introduced in order to
216 represent the output of virConnectGetDomainCapabilities().
217
218 For now it's not used anywhere, but its addition allows us to start
219 building the needed machinery for:
220 - Creating a wrapper around virConnectGetDomainCapabilities();
221 - Creating new objects that will be used to return each of the elements
222 present in the output of virConnectGetDomainCapabilities(),
223 accordingly to the consumers of this library's need;
224
225 Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
226
227 gobject: Use the proper return type in _connection_get_capabilities_finish()
228 Instead of returning FALSE, return NULL.
229
230 Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
231
232 gconfig: Add _domain_os_set_firmware()
233 Add a way to set <os firmware="bios|efi"/> to the domain XML.
234
235 Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
236
237 2019-02-20 Daniel P. Berrangé <berrange@redhat.com>
238
239 po: refresh translations from zanata
240
241 po: minimize uk ur vi wba yo zh_CN zh_HK zh_TW zu
242
243 po: minimize sq sr@latin sr sv ta te tg th tr tw
244
245 po: minimize or pa pl pt_BR pt ro ru si sk sl
246
247 po: minimize mn mr ms nb nds ne nl nn nso
248
249 po: minimize kw_GB kw@kkcor kw kw@uccor ky lt lv mai mk ml
250
251 po: minimize id ilo is it ja ka kk km kn ko
252
253 po: minimize fr gl gu he hi hr hu ia
254
255 po: minimize de el en_GB eo es et eu fa fi
256
257 po: minimize bn bo br brx bs ca cs cy da de_CH
258
259 po: minimize af am anp ar as ast bal be bg bn_IN
260
261 po: minimize & canonicalize translations stored in git
262 Similar to the libvirt-glib.pot, .po files contain line numbers and file
263 names identifying where in the source a translatable string comes from.
264 The source locations in the .po files are thrown away and replaced with
265 content from the libvirt-glib.pot whenever msgmerge is run, so this is not
266 precious information that needs to be stored in git.
267
268 When msgmerge processes a .po file, it will add in any msgids from the
269 libvirt-glib.pot that were not already present. Thus, if a particular msgid
270 currently has no translation, it can be considered redundant and again
271 does not need storing in git.
272
273 When msgmerge processes a .po file and can't find an exact existing
274 translation match, it will try todo fuzzy matching instead, marking such
275 entries with a "# fuzzy" comment to alert the translator to take a
276 look and either discard, edit or accept the match. Looking at the
277 existing fuzzy matches in .po files shows that the quality is awful,
278 with many having a completely different set of printf format specifiers
279 between the msgid and fuzzy msgstr entry. Fortunately when msgfmt
280 generates the .gmo, the fuzzy entries are all ignored anyway. The fuzzy
281 entries could be useful to translators if they were working on the .po
282 files directly from git, but Libvirt-Glib outsourced translation to the
283 Fedora Zanata system, so keeping fuzzy matches in git is not much help.
284
285 Finally, by default msgids are sorted based on source location. Thus, if
286 a bit of code with translatable text is moved from one file to another,
287 it may shift around in the .po file, despite the msgid not itself changing.
288 If the msgids were sorted alphabetically, the .po files would have
289 stable ordering when code is refactored.
290
291 This patch takes advantage of the above observations to canonicalize
292 and minimize the content stored for .po files in git. Instead of storing
293 the real .po files, we now store .mini.po files.
294
295 The .mini.po files are the same file format as .po files, but have no
296 source location comments, are sorted alphabetically, and all fuzzy
297 msgstrs and msgids with no translation are discarded. This cuts the size
298 of content in the po directory.
299
300 Users working from a libvirt-glib git checkout who need the full .po files
301 can run "make update-po", which merges the libvirt-glib.pot and .mini.po
302 file to create a .po file containing all the content previously stored
303 in git.
304
305 Conversely if a full .po file has been modified, for example, by
306 downloading new content from Zanata, the .mini.po files can be updated
307 by running "make update-mini-po". The resulting diffs of the .mini.po
308 file will clearly show the changed translations without any of the noise
309 that previously obscured content. Being able to see content changes
310 clearly actually identified a bug in the zanata python client where it
311 was adding bogus "fuzzy" annotations to many messages:
312
313 https://bugzilla.redhat.com/show_bug.cgi?id=1564497
314
315 Users working from libvirt-glib releases should not see any difference in
316 behaviour, since the tarballs only contain the full .po files, not the
317 .mini.po files.
318
319 As an added benefit, generating tarballs with "make dist", will no
320 longer cause creation of dirty files in git, since it won't touch the
321 .mini.po files, only the .po files which are no longer kept in git.
322
323 The languages are minimized in the following commit since it is a
324 large mechanical process.
325
326 po: add rules for integration with zanata
327 Add rules to handle pushing libvirt-glib.pot to zanata, and refreshing .po
328 files with new content from zanata.
329
330 po: remove language list from zanata configuration
331 The <locales> element in zanata.xml is no longer relevant as this info
332 is recorded server side.
333
334 po: provide custom make rules for po file management
335 Historically we have relied on intltool to install a standard
336 po/Makefile.in.in which has very limited scope for customization.
337 intltool is deprecated in favour of standard gettextize tools,
338 but these share the same disadvantages.
339
340 Writing make rules for po file management is no more difficult
341 than any other rules libvirt-glib has, so stop using intltool
342 and don't use gettextize ether.
343
344 2019-02-14 Christophe Fergeau <cfergeau@redhat.com>
345
346 events: Mark 'eventlock' as static
347 It's not used outside of the libvirt-glib-event.c file, so there is no
348 good reason for not having it static. As it was not listed in
349 libvirt-glib.sym, this will make no change to the publicly exported
350 symbols (ie this is not an ABI change).
351
352 Reviewed-by: Fabiano Fidêncio <fidencio@redhat.com>
353
354 object: Fix gvir_connection_create_storage_pool() leak
355 We need to free the string returned by gvir_config_object_to_xml() after
356 using it.
357
358 Reviewed-by: Fabiano Fidêncio <fidencio@redhat.com>
359
360 config: Fix gvir_config_xml_node_to_string() leak
361 If xmlNodeDump() fails, we would be leaking the xmlBuffer we created.
362 This commit ensures we don't return early before this buffer is freed.
363
364 Reviewed-by: Fabiano Fidêncio <fidencio@redhat.com>
365
366 2019-02-12 Christophe Fergeau <cfergeau@redhat.com>
367
368 gconfig: Add gvir_config_storage_vol_target_set_features
369 Only one feature is supported at the moment, 'lazy refcount'
370
371 Reviewed-by: Cole Robinson <crobinso@redhat.com>
372
0373 2018-10-12 Daniel P. Berrangé <berrange@redhat.com>
1374
2375 Bump version to 2.0.0 for new release
0 # Makefile.in generated by automake 1.15.1 from Makefile.am.
0 # Makefile.in generated by automake 1.16.1 from Makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
9090 subdir = .
9191 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
9292 am__aclocal_m4_deps = $(top_srcdir)/m4/glibtests.m4 \
93 $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
94 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
95 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
96 $(top_srcdir)/m4/manywarnings.m4 \
93 $(top_srcdir)/m4/gtk-doc.m4 $(top_srcdir)/m4/introspection.m4 \
94 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
95 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
96 $(top_srcdir)/m4/lt~obsolete.m4 \
97 $(top_srcdir)/m4/manywarnings.m4 $(top_srcdir)/m4/pkg.m4 \
9798 $(top_srcdir)/m4/virt-compile-warnings.m4 \
98 $(top_srcdir)/m4/virt-gettext.m4 $(top_srcdir)/m4/warnings.m4 \
99 $(top_srcdir)/m4/virt-nls.m4 $(top_srcdir)/m4/warnings.m4 \
99100 $(top_srcdir)/configure.ac
100101 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
101102 $(ACLOCAL_M4)
172173 $(RECURSIVE_CLEAN_TARGETS) \
173174 $(am__extra_recursive_targets)
174175 AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
175 cscope distdir dist dist-all distcheck
176 cscope distdir distdir-am dist dist-all distcheck
176177 am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \
177178 $(LISP)config.h.in
178179 # Read a list of newline-separated strings from the standard input,
253254 | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
254255 distcleancheck_listfiles = find . -type f -print
255256 ACLOCAL = @ACLOCAL@
256 ALL_LINGUAS = @ALL_LINGUAS@
257257 AMTAR = @AMTAR@
258258 AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
259259 AR = @AR@
284284 EGREP = @EGREP@
285285 EXEEXT = @EXEEXT@
286286 FGREP = @FGREP@
287 GETTEXT_PACKAGE = @GETTEXT_PACKAGE@
288287 GIO2_CFLAGS = @GIO2_CFLAGS@
289288 GIO2_LIBS = @GIO2_LIBS@
290289 GLIB2_CFLAGS = @GLIB2_CFLAGS@
291290 GLIB2_LIBS = @GLIB2_LIBS@
292291 GLIB2_REQUIRED = @GLIB2_REQUIRED@
292 GLIB2_VERSION_SYMBOL = @GLIB2_VERSION_SYMBOL@
293293 GLIB_MKENUMS = @GLIB_MKENUMS@
294 GMSGFMT = @GMSGFMT@
295294 GOBJECT2_CFLAGS = @GOBJECT2_CFLAGS@
296295 GOBJECT2_LIBS = @GOBJECT2_LIBS@
297296 GREP = @GREP@
309308 INSTALL_PROGRAM = @INSTALL_PROGRAM@
310309 INSTALL_SCRIPT = @INSTALL_SCRIPT@
311310 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
312 INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
313 INTLTOOL_MERGE = @INTLTOOL_MERGE@
314 INTLTOOL_PERL = @INTLTOOL_PERL@
315 INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
316 INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@
317 INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@
318 INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@
319 INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@
320311 INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@
321312 INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@
322313 INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@
374365 SET_MAKE = @SET_MAKE@
375366 SHELL = @SHELL@
376367 STRIP = @STRIP@
377 USE_NLS = @USE_NLS@
378368 VAPIGEN = @VAPIGEN@
379369 VERSION = @VERSION@
380370 WARN_CFLAGS = @WARN_CFLAGS@
414404 install_sh = @install_sh@
415405 installed_test_metadir = @installed_test_metadir@
416406 installed_testdir = @installed_testdir@
417 intltool__v_merge_options_ = @intltool__v_merge_options_@
418 intltool__v_merge_options_0 = @intltool__v_merge_options_0@
419407 libdir = @libdir@
420408 libexecdir = @libexecdir@
421409 localedir = @localedir@
480468 echo ' $(SHELL) ./config.status'; \
481469 $(SHELL) ./config.status;; \
482470 *) \
483 echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
484 cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
471 echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \
472 cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \
485473 esac;
486474
487475 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
654642 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
655643 -rm -f cscope.out cscope.in.out cscope.po.out cscope.files
656644
657 distdir: $(DISTFILES)
645 distdir: $(BUILT_SOURCES)
646 $(MAKE) $(AM_MAKEFLAGS) distdir-am
647
648 distdir-am: $(DISTFILES)
658649 $(am__remove_distdir)
659650 test -d "$(distdir)" || mkdir "$(distdir)"
660651 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
00 libvirt-glib News
11 =================
2
3 3.0.0 - Nov 26, 2019
4 ====================
5
6 - Add support for bochs video device
7 - Add API to query firmware config
8 - Improve testing coverage
9 - Validate min/max glib API versions in use
10 - Remove deprecated G_PARAM_PRIVATE
11 - Fix docs build linking problems
12 - Convert python demos to be python 3 compatible & use
13 modern best practice for pyobject introspection bindings
14 - Add API to query domain capaibilities
15 - Refresh translations
16 - Simplify build process for handling translations
17 - Fix some memory leaks
18 - Add API for setting storage volume features
19
220
321 2.0.0 - Oct 12, 2018
422 ====================
0 # generated automatically by aclocal 1.15.1 -*- Autoconf -*-
1
2 # Copyright (C) 1996-2017 Free Software Foundation, Inc.
0 # generated automatically by aclocal 1.16.1 -*- Autoconf -*-
1
2 # Copyright (C) 1996-2018 Free Software Foundation, Inc.
33
44 # This file is free software; the Free Software Foundation
55 # gives unlimited permission to copy and/or distribute it,
1919 If you have problems, you may need to regenerate the build system entirely.
2020 To do so, use the procedure documented by the package, typically 'autoreconf'.])])
2121
22 # -*- mode: autoconf -*-
23 #
24 # gtk-doc.m4 - configure macro to check for gtk-doc
25 # Copyright (C) 2003 James Henstridge
26 # 2007-2017 Stefan Sauer
27 #
28 # This program is free software: you can redistribute it and/or modify
29 # it under the terms of the GNU General Public License as published by
30 # the Free Software Foundation, either version 3 of the License, or
31 # (at your option) any later version.
32 #
33 # This program is distributed in the hope that it will be useful,
34 # but WITHOUT ANY WARRANTY; without even the implied warranty of
35 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
36 # GNU General Public License for more details.
37 #
38 # You should have received a copy of the GNU General Public License
39 # along with this program. If not, see <http://www.gnu.org/licenses/>.
40 #
41 # As a special exception, the above copyright owner gives unlimited
42 # permission to copy, distribute and modify the configure scripts that
43 # are the output of Autoconf when processing the Macro. You need not
44 # follow the terms of the GNU General Public License when using or
45 # distributing such scripts, even though portions of the text of the
46 # Macro appear in them. The GNU General Public License (GPL) does govern
47 # all other use of the material that constitutes the Autoconf Macro.
48
49 # serial 2
50
51 dnl Usage:
52 dnl GTK_DOC_CHECK([minimum-gtk-doc-version])
53 AC_DEFUN([GTK_DOC_CHECK],
54 [
55 AC_REQUIRE([PKG_PROG_PKG_CONFIG])
56 AC_BEFORE([AC_PROG_LIBTOOL],[$0])dnl setup libtool first
57 AC_BEFORE([AM_PROG_LIBTOOL],[$0])dnl setup libtool first
58
59 ifelse([$1],[],[gtk_doc_requires="gtk-doc"],[gtk_doc_requires="gtk-doc >= $1"])
60 AC_MSG_CHECKING([for gtk-doc])
61 PKG_CHECK_EXISTS([$gtk_doc_requires],[have_gtk_doc=yes],[have_gtk_doc=no])
62 AC_MSG_RESULT($have_gtk_doc)
63
64 if test "$have_gtk_doc" = "no"; then
65 AC_MSG_WARN([
66 You will not be able to create source packages with 'make dist'
67 because $gtk_doc_requires is not found.])
68 fi
69
70 dnl check for tools we added during development
71 dnl Use AC_CHECK_PROG to avoid the check target using an absolute path that
72 dnl may not be writable by the user. Currently, automake requires that the
73 dnl test name must end in '.test'.
74 dnl https://bugzilla.gnome.org/show_bug.cgi?id=701638
75 AC_CHECK_PROG([GTKDOC_CHECK],[gtkdoc-check],[gtkdoc-check.test])
76 AC_PATH_PROG([GTKDOC_CHECK_PATH],[gtkdoc-check])
77 AC_PATH_PROGS([GTKDOC_REBASE],[gtkdoc-rebase],[true])
78 AC_PATH_PROG([GTKDOC_MKPDF],[gtkdoc-mkpdf])
79
80 dnl for overriding the documentation installation directory
81 AC_ARG_WITH([html-dir],
82 AS_HELP_STRING([--with-html-dir=PATH], [path to installed docs]),,
83 [with_html_dir='${datadir}/gtk-doc/html'])
84 HTML_DIR="$with_html_dir"
85 AC_SUBST([HTML_DIR])
86
87 dnl enable/disable documentation building
88 AC_ARG_ENABLE([gtk-doc],
89 AS_HELP_STRING([--enable-gtk-doc],
90 [use gtk-doc to build documentation [[default=no]]]),,
91 [enable_gtk_doc=no])
92
93 AC_MSG_CHECKING([whether to build gtk-doc documentation])
94 AC_MSG_RESULT($enable_gtk_doc)
95
96 if test "x$enable_gtk_doc" = "xyes" && test "$have_gtk_doc" = "no"; then
97 AC_MSG_ERROR([
98 You must have $gtk_doc_requires installed to build documentation for
99 $PACKAGE_NAME. Please install gtk-doc or disable building the
100 documentation by adding '--disable-gtk-doc' to '[$]0'.])
101 fi
102
103 dnl don't check for glib if we build glib
104 if test "x$PACKAGE_NAME" != "xglib"; then
105 dnl don't fail if someone does not have glib
106 PKG_CHECK_MODULES(GTKDOC_DEPS, glib-2.0 >= 2.10.0 gobject-2.0 >= 2.10.0,,[:])
107 fi
108
109 dnl enable/disable output formats
110 AC_ARG_ENABLE([gtk-doc-html],
111 AS_HELP_STRING([--enable-gtk-doc-html],
112 [build documentation in html format [[default=yes]]]),,
113 [enable_gtk_doc_html=yes])
114 AC_ARG_ENABLE([gtk-doc-pdf],
115 AS_HELP_STRING([--enable-gtk-doc-pdf],
116 [build documentation in pdf format [[default=no]]]),,
117 [enable_gtk_doc_pdf=no])
118
119 if test -z "$GTKDOC_MKPDF"; then
120 enable_gtk_doc_pdf=no
121 fi
122
123 if test -z "$AM_DEFAULT_VERBOSITY"; then
124 AM_DEFAULT_VERBOSITY=1
125 fi
126 AC_SUBST([AM_DEFAULT_VERBOSITY])
127
128 AM_CONDITIONAL([HAVE_GTK_DOC], [test x$have_gtk_doc = xyes])
129 AM_CONDITIONAL([ENABLE_GTK_DOC], [test x$enable_gtk_doc = xyes])
130 AM_CONDITIONAL([GTK_DOC_BUILD_HTML], [test x$enable_gtk_doc_html = xyes])
131 AM_CONDITIONAL([GTK_DOC_BUILD_PDF], [test x$enable_gtk_doc_pdf = xyes])
132 AM_CONDITIONAL([GTK_DOC_USE_LIBTOOL], [test -n "$LIBTOOL"])
133 AM_CONDITIONAL([GTK_DOC_USE_REBASE], [test -n "$GTKDOC_REBASE"])
134 ])
135
136 dnl -*- mode: autoconf -*-
137 dnl Copyright 2009 Johan Dahlin
138 dnl
139 dnl This file is free software; the author(s) gives unlimited
140 dnl permission to copy and/or distribute it, with or without
141 dnl modifications, as long as this notice is preserved.
142 dnl
143
144 # serial 1
145
146 m4_define([_GOBJECT_INTROSPECTION_CHECK_INTERNAL],
147 [
148 AC_BEFORE([AC_PROG_LIBTOOL],[$0])dnl setup libtool first
149 AC_BEFORE([AM_PROG_LIBTOOL],[$0])dnl setup libtool first
150 AC_BEFORE([LT_INIT],[$0])dnl setup libtool first
151
152 dnl enable/disable introspection
153 m4_if([$2], [require],
154 [dnl
155 enable_introspection=yes
156 ],[dnl
157 AC_ARG_ENABLE(introspection,
158 AS_HELP_STRING([--enable-introspection[=@<:@no/auto/yes@:>@]],
159 [Enable introspection for this build]),,
160 [enable_introspection=auto])
161 ])dnl
162
163 AC_MSG_CHECKING([for gobject-introspection])
164
165 dnl presence/version checking
166 AS_CASE([$enable_introspection],
167 [no], [dnl
168 found_introspection="no (disabled, use --enable-introspection to enable)"
169 ],dnl
170 [yes],[dnl
171 PKG_CHECK_EXISTS([gobject-introspection-1.0],,
172 AC_MSG_ERROR([gobject-introspection-1.0 is not installed]))
173 PKG_CHECK_EXISTS([gobject-introspection-1.0 >= $1],
174 found_introspection=yes,
175 AC_MSG_ERROR([You need to have gobject-introspection >= $1 installed to build AC_PACKAGE_NAME]))
176 ],dnl
177 [auto],[dnl
178 PKG_CHECK_EXISTS([gobject-introspection-1.0 >= $1], found_introspection=yes, found_introspection=no)
179 dnl Canonicalize enable_introspection
180 enable_introspection=$found_introspection
181 ],dnl
182 [dnl
183 AC_MSG_ERROR([invalid argument passed to --enable-introspection, should be one of @<:@no/auto/yes@:>@])
184 ])dnl
185
186 AC_MSG_RESULT([$found_introspection])
187
188 INTROSPECTION_SCANNER=
189 INTROSPECTION_COMPILER=
190 INTROSPECTION_GENERATE=
191 INTROSPECTION_GIRDIR=
192 INTROSPECTION_TYPELIBDIR=
193 if test "x$found_introspection" = "xyes"; then
194 INTROSPECTION_SCANNER=`$PKG_CONFIG --variable=g_ir_scanner gobject-introspection-1.0`
195 INTROSPECTION_COMPILER=`$PKG_CONFIG --variable=g_ir_compiler gobject-introspection-1.0`
196 INTROSPECTION_GENERATE=`$PKG_CONFIG --variable=g_ir_generate gobject-introspection-1.0`
197 INTROSPECTION_GIRDIR=`$PKG_CONFIG --variable=girdir gobject-introspection-1.0`
198 INTROSPECTION_TYPELIBDIR="$($PKG_CONFIG --variable=typelibdir gobject-introspection-1.0)"
199 INTROSPECTION_CFLAGS=`$PKG_CONFIG --cflags gobject-introspection-1.0`
200 INTROSPECTION_LIBS=`$PKG_CONFIG --libs gobject-introspection-1.0`
201 INTROSPECTION_MAKEFILE=`$PKG_CONFIG --variable=datadir gobject-introspection-1.0`/gobject-introspection-1.0/Makefile.introspection
202 fi
203 AC_SUBST(INTROSPECTION_SCANNER)
204 AC_SUBST(INTROSPECTION_COMPILER)
205 AC_SUBST(INTROSPECTION_GENERATE)
206 AC_SUBST(INTROSPECTION_GIRDIR)
207 AC_SUBST(INTROSPECTION_TYPELIBDIR)
208 AC_SUBST(INTROSPECTION_CFLAGS)
209 AC_SUBST(INTROSPECTION_LIBS)
210 AC_SUBST(INTROSPECTION_MAKEFILE)
211
212 AM_CONDITIONAL(HAVE_INTROSPECTION, test "x$found_introspection" = "xyes")
213 ])
214
215
216 dnl Usage:
217 dnl GOBJECT_INTROSPECTION_CHECK([minimum-g-i-version])
218
219 AC_DEFUN([GOBJECT_INTROSPECTION_CHECK],
220 [
221 _GOBJECT_INTROSPECTION_CHECK_INTERNAL([$1])
222 ])
223
224 dnl Usage:
225 dnl GOBJECT_INTROSPECTION_REQUIRE([minimum-g-i-version])
226
227
228 AC_DEFUN([GOBJECT_INTROSPECTION_REQUIRE],
229 [
230 _GOBJECT_INTROSPECTION_CHECK_INTERNAL([$1], [require])
231 ])
232
233 # nls.m4 serial 5 (gettext-0.18)
234 dnl Copyright (C) 1995-2003, 2005-2006, 2008-2014, 2016 Free Software
235 dnl Foundation, Inc.
236 dnl This file is free software; the Free Software Foundation
237 dnl gives unlimited permission to copy and/or distribute it,
238 dnl with or without modifications, as long as this notice is preserved.
239 dnl
240 dnl This file can be used in projects which are not available under
241 dnl the GNU General Public License or the GNU Library General Public
242 dnl License but which still want to provide support for the GNU gettext
243 dnl functionality.
244 dnl Please note that the actual code of the GNU gettext library is covered
245 dnl by the GNU Library General Public License, and the rest of the GNU
246 dnl gettext package is covered by the GNU General Public License.
247 dnl They are *not* in the public domain.
248
249 dnl Authors:
250 dnl Ulrich Drepper <drepper@cygnus.com>, 1995-2000.
251 dnl Bruno Haible <haible@clisp.cons.org>, 2000-2003.
252
253 AC_PREREQ([2.50])
254
255 AC_DEFUN([AM_NLS],
256 [
257 AC_MSG_CHECKING([whether NLS is requested])
258 dnl Default is enabled NLS
259 AC_ARG_ENABLE([nls],
260 [ --disable-nls do not use Native Language Support],
261 USE_NLS=$enableval, USE_NLS=yes)
262 AC_MSG_RESULT([$USE_NLS])
263 AC_SUBST([USE_NLS])
264 ])
265
266 # pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*-
267 # serial 11 (pkg-config-0.29.1)
268
269 dnl Copyright © 2004 Scott James Remnant <scott@netsplit.com>.
270 dnl Copyright © 2012-2015 Dan Nicholson <dbn.lists@gmail.com>
271 dnl
272 dnl This program is free software; you can redistribute it and/or modify
273 dnl it under the terms of the GNU General Public License as published by
274 dnl the Free Software Foundation; either version 2 of the License, or
275 dnl (at your option) any later version.
276 dnl
277 dnl This program is distributed in the hope that it will be useful, but
278 dnl WITHOUT ANY WARRANTY; without even the implied warranty of
279 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
280 dnl General Public License for more details.
281 dnl
282 dnl You should have received a copy of the GNU General Public License
283 dnl along with this program; if not, write to the Free Software
284 dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
285 dnl 02111-1307, USA.
286 dnl
287 dnl As a special exception to the GNU General Public License, if you
288 dnl distribute this file as part of a program that contains a
289 dnl configuration script generated by Autoconf, you may include it under
290 dnl the same distribution terms that you use for the rest of that
291 dnl program.
292
293 dnl PKG_PREREQ(MIN-VERSION)
294 dnl -----------------------
295 dnl Since: 0.29
296 dnl
297 dnl Verify that the version of the pkg-config macros are at least
298 dnl MIN-VERSION. Unlike PKG_PROG_PKG_CONFIG, which checks the user's
299 dnl installed version of pkg-config, this checks the developer's version
300 dnl of pkg.m4 when generating configure.
301 dnl
302 dnl To ensure that this macro is defined, also add:
303 dnl m4_ifndef([PKG_PREREQ],
304 dnl [m4_fatal([must install pkg-config 0.29 or later before running autoconf/autogen])])
305 dnl
306 dnl See the "Since" comment for each macro you use to see what version
307 dnl of the macros you require.
308 m4_defun([PKG_PREREQ],
309 [m4_define([PKG_MACROS_VERSION], [0.29.1])
310 m4_if(m4_version_compare(PKG_MACROS_VERSION, [$1]), -1,
311 [m4_fatal([pkg.m4 version $1 or higher is required but ]PKG_MACROS_VERSION[ found])])
312 ])dnl PKG_PREREQ
313
314 dnl PKG_PROG_PKG_CONFIG([MIN-VERSION])
315 dnl ----------------------------------
316 dnl Since: 0.16
317 dnl
318 dnl Search for the pkg-config tool and set the PKG_CONFIG variable to
319 dnl first found in the path. Checks that the version of pkg-config found
320 dnl is at least MIN-VERSION. If MIN-VERSION is not specified, 0.9.0 is
321 dnl used since that's the first version where most current features of
322 dnl pkg-config existed.
323 AC_DEFUN([PKG_PROG_PKG_CONFIG],
324 [m4_pattern_forbid([^_?PKG_[A-Z_]+$])
325 m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$])
326 m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$])
327 AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])
328 AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path])
329 AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path])
330
331 if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
332 AC_PATH_TOOL([PKG_CONFIG], [pkg-config])
333 fi
334 if test -n "$PKG_CONFIG"; then
335 _pkg_min_version=m4_default([$1], [0.9.0])
336 AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version])
337 if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
338 AC_MSG_RESULT([yes])
339 else
340 AC_MSG_RESULT([no])
341 PKG_CONFIG=""
342 fi
343 fi[]dnl
344 ])dnl PKG_PROG_PKG_CONFIG
345
346 dnl PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
347 dnl -------------------------------------------------------------------
348 dnl Since: 0.18
349 dnl
350 dnl Check to see whether a particular set of modules exists. Similar to
351 dnl PKG_CHECK_MODULES(), but does not set variables or print errors.
352 dnl
353 dnl Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG])
354 dnl only at the first occurence in configure.ac, so if the first place
355 dnl it's called might be skipped (such as if it is within an "if", you
356 dnl have to call PKG_CHECK_EXISTS manually
357 AC_DEFUN([PKG_CHECK_EXISTS],
358 [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
359 if test -n "$PKG_CONFIG" && \
360 AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then
361 m4_default([$2], [:])
362 m4_ifvaln([$3], [else
363 $3])dnl
364 fi])
365
366 dnl _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES])
367 dnl ---------------------------------------------
368 dnl Internal wrapper calling pkg-config via PKG_CONFIG and setting
369 dnl pkg_failed based on the result.
370 m4_define([_PKG_CONFIG],
371 [if test -n "$$1"; then
372 pkg_cv_[]$1="$$1"
373 elif test -n "$PKG_CONFIG"; then
374 PKG_CHECK_EXISTS([$3],
375 [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`
376 test "x$?" != "x0" && pkg_failed=yes ],
377 [pkg_failed=yes])
378 else
379 pkg_failed=untried
380 fi[]dnl
381 ])dnl _PKG_CONFIG
382
383 dnl _PKG_SHORT_ERRORS_SUPPORTED
384 dnl ---------------------------
385 dnl Internal check to see if pkg-config supports short errors.
386 AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED],
387 [AC_REQUIRE([PKG_PROG_PKG_CONFIG])
388 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
389 _pkg_short_errors_supported=yes
390 else
391 _pkg_short_errors_supported=no
392 fi[]dnl
393 ])dnl _PKG_SHORT_ERRORS_SUPPORTED
394
395
396 dnl PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
397 dnl [ACTION-IF-NOT-FOUND])
398 dnl --------------------------------------------------------------
399 dnl Since: 0.4.0
400 dnl
401 dnl Note that if there is a possibility the first call to
402 dnl PKG_CHECK_MODULES might not happen, you should be sure to include an
403 dnl explicit call to PKG_PROG_PKG_CONFIG in your configure.ac
404 AC_DEFUN([PKG_CHECK_MODULES],
405 [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
406 AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl
407 AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl
408
409 pkg_failed=no
410 AC_MSG_CHECKING([for $1])
411
412 _PKG_CONFIG([$1][_CFLAGS], [cflags], [$2])
413 _PKG_CONFIG([$1][_LIBS], [libs], [$2])
414
415 m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS
416 and $1[]_LIBS to avoid the need to call pkg-config.
417 See the pkg-config man page for more details.])
418
419 if test $pkg_failed = yes; then
420 AC_MSG_RESULT([no])
421 _PKG_SHORT_ERRORS_SUPPORTED
422 if test $_pkg_short_errors_supported = yes; then
423 $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1`
424 else
425 $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1`
426 fi
427 # Put the nasty error message in config.log where it belongs
428 echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD
429
430 m4_default([$4], [AC_MSG_ERROR(
431 [Package requirements ($2) were not met:
432
433 $$1_PKG_ERRORS
434
435 Consider adjusting the PKG_CONFIG_PATH environment variable if you
436 installed software in a non-standard prefix.
437
438 _PKG_TEXT])[]dnl
439 ])
440 elif test $pkg_failed = untried; then
441 AC_MSG_RESULT([no])
442 m4_default([$4], [AC_MSG_FAILURE(
443 [The pkg-config script could not be found or is too old. Make sure it
444 is in your PATH or set the PKG_CONFIG environment variable to the full
445 path to pkg-config.
446
447 _PKG_TEXT
448
449 To get pkg-config, see <http://pkg-config.freedesktop.org/>.])[]dnl
450 ])
451 else
452 $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
453 $1[]_LIBS=$pkg_cv_[]$1[]_LIBS
454 AC_MSG_RESULT([yes])
455 $3
456 fi[]dnl
457 ])dnl PKG_CHECK_MODULES
458
459
460 dnl PKG_CHECK_MODULES_STATIC(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
461 dnl [ACTION-IF-NOT-FOUND])
462 dnl ---------------------------------------------------------------------
463 dnl Since: 0.29
464 dnl
465 dnl Checks for existence of MODULES and gathers its build flags with
466 dnl static libraries enabled. Sets VARIABLE-PREFIX_CFLAGS from --cflags
467 dnl and VARIABLE-PREFIX_LIBS from --libs.
468 dnl
469 dnl Note that if there is a possibility the first call to
470 dnl PKG_CHECK_MODULES_STATIC might not happen, you should be sure to
471 dnl include an explicit call to PKG_PROG_PKG_CONFIG in your
472 dnl configure.ac.
473 AC_DEFUN([PKG_CHECK_MODULES_STATIC],
474 [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
475 _save_PKG_CONFIG=$PKG_CONFIG
476 PKG_CONFIG="$PKG_CONFIG --static"
477 PKG_CHECK_MODULES($@)
478 PKG_CONFIG=$_save_PKG_CONFIG[]dnl
479 ])dnl PKG_CHECK_MODULES_STATIC
480
481
482 dnl PKG_INSTALLDIR([DIRECTORY])
483 dnl -------------------------
484 dnl Since: 0.27
485 dnl
486 dnl Substitutes the variable pkgconfigdir as the location where a module
487 dnl should install pkg-config .pc files. By default the directory is
488 dnl $libdir/pkgconfig, but the default can be changed by passing
489 dnl DIRECTORY. The user can override through the --with-pkgconfigdir
490 dnl parameter.
491 AC_DEFUN([PKG_INSTALLDIR],
492 [m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])])
493 m4_pushdef([pkg_description],
494 [pkg-config installation directory @<:@]pkg_default[@:>@])
495 AC_ARG_WITH([pkgconfigdir],
496 [AS_HELP_STRING([--with-pkgconfigdir], pkg_description)],,
497 [with_pkgconfigdir=]pkg_default)
498 AC_SUBST([pkgconfigdir], [$with_pkgconfigdir])
499 m4_popdef([pkg_default])
500 m4_popdef([pkg_description])
501 ])dnl PKG_INSTALLDIR
502
503
504 dnl PKG_NOARCH_INSTALLDIR([DIRECTORY])
505 dnl --------------------------------
506 dnl Since: 0.27
507 dnl
508 dnl Substitutes the variable noarch_pkgconfigdir as the location where a
509 dnl module should install arch-independent pkg-config .pc files. By
510 dnl default the directory is $datadir/pkgconfig, but the default can be
511 dnl changed by passing DIRECTORY. The user can override through the
512 dnl --with-noarch-pkgconfigdir parameter.
513 AC_DEFUN([PKG_NOARCH_INSTALLDIR],
514 [m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])])
515 m4_pushdef([pkg_description],
516 [pkg-config arch-independent installation directory @<:@]pkg_default[@:>@])
517 AC_ARG_WITH([noarch-pkgconfigdir],
518 [AS_HELP_STRING([--with-noarch-pkgconfigdir], pkg_description)],,
519 [with_noarch_pkgconfigdir=]pkg_default)
520 AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir])
521 m4_popdef([pkg_default])
522 m4_popdef([pkg_description])
523 ])dnl PKG_NOARCH_INSTALLDIR
524
525
526 dnl PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE,
527 dnl [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
528 dnl -------------------------------------------
529 dnl Since: 0.28
530 dnl
531 dnl Retrieves the value of the pkg-config variable for the given module.
532 AC_DEFUN([PKG_CHECK_VAR],
533 [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
534 AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl
535
536 _PKG_CONFIG([$1], [variable="][$3]["], [$2])
537 AS_VAR_COPY([$1], [pkg_cv_][$1])
538
539 AS_VAR_IF([$1], [""], [$5], [$4])dnl
540 ])dnl PKG_CHECK_VAR
541
542 dnl PKG_WITH_MODULES(VARIABLE-PREFIX, MODULES,
543 dnl [ACTION-IF-FOUND],[ACTION-IF-NOT-FOUND],
544 dnl [DESCRIPTION], [DEFAULT])
545 dnl ------------------------------------------
546 dnl
547 dnl Prepare a "--with-" configure option using the lowercase
548 dnl [VARIABLE-PREFIX] name, merging the behaviour of AC_ARG_WITH and
549 dnl PKG_CHECK_MODULES in a single macro.
550 AC_DEFUN([PKG_WITH_MODULES],
551 [
552 m4_pushdef([with_arg], m4_tolower([$1]))
553
554 m4_pushdef([description],
555 [m4_default([$5], [build with ]with_arg[ support])])
556
557 m4_pushdef([def_arg], [m4_default([$6], [auto])])
558 m4_pushdef([def_action_if_found], [AS_TR_SH([with_]with_arg)=yes])
559 m4_pushdef([def_action_if_not_found], [AS_TR_SH([with_]with_arg)=no])
560
561 m4_case(def_arg,
562 [yes],[m4_pushdef([with_without], [--without-]with_arg)],
563 [m4_pushdef([with_without],[--with-]with_arg)])
564
565 AC_ARG_WITH(with_arg,
566 AS_HELP_STRING(with_without, description[ @<:@default=]def_arg[@:>@]),,
567 [AS_TR_SH([with_]with_arg)=def_arg])
568
569 AS_CASE([$AS_TR_SH([with_]with_arg)],
570 [yes],[PKG_CHECK_MODULES([$1],[$2],$3,$4)],
571 [auto],[PKG_CHECK_MODULES([$1],[$2],
572 [m4_n([def_action_if_found]) $3],
573 [m4_n([def_action_if_not_found]) $4])])
574
575 m4_popdef([with_arg])
576 m4_popdef([description])
577 m4_popdef([def_arg])
578
579 ])dnl PKG_WITH_MODULES
580
581 dnl PKG_HAVE_WITH_MODULES(VARIABLE-PREFIX, MODULES,
582 dnl [DESCRIPTION], [DEFAULT])
583 dnl -----------------------------------------------
584 dnl
585 dnl Convenience macro to trigger AM_CONDITIONAL after PKG_WITH_MODULES
586 dnl check._[VARIABLE-PREFIX] is exported as make variable.
587 AC_DEFUN([PKG_HAVE_WITH_MODULES],
588 [
589 PKG_WITH_MODULES([$1],[$2],,,[$3],[$4])
590
591 AM_CONDITIONAL([HAVE_][$1],
592 [test "$AS_TR_SH([with_]m4_tolower([$1]))" = "yes"])
593 ])dnl PKG_HAVE_WITH_MODULES
594
595 dnl PKG_HAVE_DEFINE_WITH_MODULES(VARIABLE-PREFIX, MODULES,
596 dnl [DESCRIPTION], [DEFAULT])
597 dnl ------------------------------------------------------
598 dnl
599 dnl Convenience macro to run AM_CONDITIONAL and AC_DEFINE after
600 dnl PKG_WITH_MODULES check. HAVE_[VARIABLE-PREFIX] is exported as make
601 dnl and preprocessor variable.
602 AC_DEFUN([PKG_HAVE_DEFINE_WITH_MODULES],
603 [
604 PKG_HAVE_WITH_MODULES([$1],[$2],[$3],[$4])
605
606 AS_IF([test "$AS_TR_SH([with_]m4_tolower([$1]))" = "yes"],
607 [AC_DEFINE([HAVE_][$1], 1, [Enable ]m4_tolower([$1])[ support])])
608 ])dnl PKG_HAVE_DEFINE_WITH_MODULES
609
610 # Copyright (C) 2002-2017 Free Software Foundation, Inc.
22 # Copyright (C) 2002-2018 Free Software Foundation, Inc.
61123 #
61224 # This file is free software; the Free Software Foundation
61325 # gives unlimited permission to copy and/or distribute it,
61931 # generated from the m4 files accompanying Automake X.Y.
62032 # (This private macro should not be called outside this file.)
62133 AC_DEFUN([AM_AUTOMAKE_VERSION],
622 [am__api_version='1.15'
34 [am__api_version='1.16'
62335 dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
62436 dnl require some minimum version. Point them to the right macro.
625 m4_if([$1], [1.15.1], [],
37 m4_if([$1], [1.16.1], [],
62638 [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
62739 ])
62840
63850 # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
63951 # This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
64052 AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
641 [AM_AUTOMAKE_VERSION([1.15.1])dnl
53 [AM_AUTOMAKE_VERSION([1.16.1])dnl
64254 m4_ifndef([AC_AUTOCONF_VERSION],
64355 [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
64456 _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
64557
64658 # AM_AUX_DIR_EXPAND -*- Autoconf -*-
64759
648 # Copyright (C) 2001-2017 Free Software Foundation, Inc.
60 # Copyright (C) 2001-2018 Free Software Foundation, Inc.
64961 #
65062 # This file is free software; the Free Software Foundation
65163 # gives unlimited permission to copy and/or distribute it,
697109
698110 # AM_CONDITIONAL -*- Autoconf -*-
699111
700 # Copyright (C) 1997-2017 Free Software Foundation, Inc.
112 # Copyright (C) 1997-2018 Free Software Foundation, Inc.
701113 #
702114 # This file is free software; the Free Software Foundation
703115 # gives unlimited permission to copy and/or distribute it,
728140 Usually this means the macro was only invoked conditionally.]])
729141 fi])])
730142
731 # Copyright (C) 1999-2017 Free Software Foundation, Inc.
143 # Copyright (C) 1999-2018 Free Software Foundation, Inc.
732144 #
733145 # This file is free software; the Free Software Foundation
734146 # gives unlimited permission to copy and/or distribute it,
919331
920332 # Generate code to set up dependency tracking. -*- Autoconf -*-
921333
922 # Copyright (C) 1999-2017 Free Software Foundation, Inc.
923 #
924 # This file is free software; the Free Software Foundation
925 # gives unlimited permission to copy and/or distribute it,
926 # with or without modifications, as long as this notice is preserved.
927
334 # Copyright (C) 1999-2018 Free Software Foundation, Inc.
335 #
336 # This file is free software; the Free Software Foundation
337 # gives unlimited permission to copy and/or distribute it,
338 # with or without modifications, as long as this notice is preserved.
928339
929340 # _AM_OUTPUT_DEPENDENCY_COMMANDS
930341 # ------------------------------
933344 # Older Autoconf quotes --file arguments for eval, but not when files
934345 # are listed without --file. Let's play safe and only enable the eval
935346 # if we detect the quoting.
936 case $CONFIG_FILES in
937 *\'*) eval set x "$CONFIG_FILES" ;;
938 *) set x $CONFIG_FILES ;;
939 esac
347 # TODO: see whether this extra hack can be removed once we start
348 # requiring Autoconf 2.70 or later.
349 AS_CASE([$CONFIG_FILES],
350 [*\'*], [eval set x "$CONFIG_FILES"],
351 [*], [set x $CONFIG_FILES])
940352 shift
941 for mf
353 # Used to flag and report bootstrapping failures.
354 am_rc=0
355 for am_mf
942356 do
943357 # Strip MF so we end up with the name of the file.
944 mf=`echo "$mf" | sed -e 's/:.*$//'`
945 # Check whether this is an Automake generated Makefile or not.
946 # We used to match only the files named 'Makefile.in', but
947 # some people rename them; so instead we look at the file content.
948 # Grep'ing the first line is not enough: some people post-process
949 # each Makefile.in and add a new line on top of each file to say so.
950 # Grep'ing the whole file is not good either: AIX grep has a line
358 am_mf=`AS_ECHO(["$am_mf"]) | sed -e 's/:.*$//'`
359 # Check whether this is an Automake generated Makefile which includes
360 # dependency-tracking related rules and includes.
361 # Grep'ing the whole file directly is not great: AIX grep has a line
951362 # limit of 2048, but all sed's we know have understand at least 4000.
952 if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
953 dirpart=`AS_DIRNAME("$mf")`
954 else
955 continue
956 fi
957 # Extract the definition of DEPDIR, am__include, and am__quote
958 # from the Makefile without running 'make'.
959 DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
960 test -z "$DEPDIR" && continue
961 am__include=`sed -n 's/^am__include = //p' < "$mf"`
962 test -z "$am__include" && continue
963 am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
964 # Find all dependency output files, they are included files with
965 # $(DEPDIR) in their names. We invoke sed twice because it is the
966 # simplest approach to changing $(DEPDIR) to its actual value in the
967 # expansion.
968 for file in `sed -n "
969 s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
970 sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do
971 # Make sure the directory exists.
972 test -f "$dirpart/$file" && continue
973 fdir=`AS_DIRNAME(["$file"])`
974 AS_MKDIR_P([$dirpart/$fdir])
975 # echo "creating $dirpart/$file"
976 echo '# dummy' > "$dirpart/$file"
977 done
363 sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \
364 || continue
365 am_dirpart=`AS_DIRNAME(["$am_mf"])`
366 am_filepart=`AS_BASENAME(["$am_mf"])`
367 AM_RUN_LOG([cd "$am_dirpart" \
368 && sed -e '/# am--include-marker/d' "$am_filepart" \
369 | $MAKE -f - am--depfiles]) || am_rc=$?
978370 done
371 if test $am_rc -ne 0; then
372 AC_MSG_FAILURE([Something went wrong bootstrapping makefile fragments
373 for automatic dependency tracking. Try re-running configure with the
374 '--disable-dependency-tracking' option to at least be able to build
375 the package (albeit without support for automatic dependency tracking).])
376 fi
377 AS_UNSET([am_dirpart])
378 AS_UNSET([am_filepart])
379 AS_UNSET([am_mf])
380 AS_UNSET([am_rc])
381 rm -f conftest-deps.mk
979382 }
980383 ])# _AM_OUTPUT_DEPENDENCY_COMMANDS
981384
984387 # -----------------------------
985388 # This macro should only be invoked once -- use via AC_REQUIRE.
986389 #
987 # This code is only required when automatic dependency tracking
988 # is enabled. FIXME. This creates each '.P' file that we will
989 # need in order to bootstrap the dependency handling code.
390 # This code is only required when automatic dependency tracking is enabled.
391 # This creates each '.Po' and '.Plo' makefile fragment that we'll need in
392 # order to bootstrap the dependency handling code.
990393 AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS],
991394 [AC_CONFIG_COMMANDS([depfiles],
992395 [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
993 [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
994 ])
396 [AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}"])])
995397
996398 # Do all the work for Automake. -*- Autoconf -*-
997399
998 # Copyright (C) 1996-2017 Free Software Foundation, Inc.
400 # Copyright (C) 1996-2018 Free Software Foundation, Inc.
999401 #
1000402 # This file is free software; the Free Software Foundation
1001403 # gives unlimited permission to copy and/or distribute it,
1082484 AC_REQUIRE([AC_PROG_MKDIR_P])dnl
1083485 # For better backward compatibility. To be removed once Automake 1.9.x
1084486 # dies out for good. For more background, see:
1085 # <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
1086 # <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
487 # <https://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
488 # <https://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
1087489 AC_SUBST([mkdir_p], ['$(MKDIR_P)'])
1088490 # We need awk for the "check" target (and possibly the TAP driver). The
1089491 # system "awk" is bad on some platforms.
1150552 Aborting the configuration process, to ensure you take notice of the issue.
1151553
1152554 You can download and install GNU coreutils to get an 'rm' implementation
1153 that behaves properly: <http://www.gnu.org/software/coreutils/>.
555 that behaves properly: <https://www.gnu.org/software/coreutils/>.
1154556
1155557 If you want to complete the configuration process using your problematic
1156558 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
1192594 done
1193595 echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
1194596
1195 # Copyright (C) 2001-2017 Free Software Foundation, Inc.
597 # Copyright (C) 2001-2018 Free Software Foundation, Inc.
1196598 #
1197599 # This file is free software; the Free Software Foundation
1198600 # gives unlimited permission to copy and/or distribute it,
1213615 fi
1214616 AC_SUBST([install_sh])])
1215617
1216 # Copyright (C) 2003-2017 Free Software Foundation, Inc.
618 # Copyright (C) 2003-2018 Free Software Foundation, Inc.
1217619 #
1218620 # This file is free software; the Free Software Foundation
1219621 # gives unlimited permission to copy and/or distribute it,
1234636
1235637 # Check to see how 'make' treats includes. -*- Autoconf -*-
1236638
1237 # Copyright (C) 2001-2017 Free Software Foundation, Inc.
639 # Copyright (C) 2001-2018 Free Software Foundation, Inc.
1238640 #
1239641 # This file is free software; the Free Software Foundation
1240642 # gives unlimited permission to copy and/or distribute it,
1242644
1243645 # AM_MAKE_INCLUDE()
1244646 # -----------------
1245 # Check to see how make treats includes.
647 # Check whether make has an 'include' directive that can support all
648 # the idioms we need for our automatic dependency tracking code.
1246649 AC_DEFUN([AM_MAKE_INCLUDE],
1247 [am_make=${MAKE-make}
1248 cat > confinc << 'END'
650 [AC_MSG_CHECKING([whether ${MAKE-make} supports the include directive])
651 cat > confinc.mk << 'END'
1249652 am__doit:
1250 @echo this is the am__doit target
653 @echo this is the am__doit target >confinc.out
1251654 .PHONY: am__doit
1252655 END
1253 # If we don't find an include directive, just comment out the code.
1254 AC_MSG_CHECKING([for style of include used by $am_make])
1255656 am__include="#"
1256657 am__quote=
1257 _am_result=none
1258 # First try GNU make style include.
1259 echo "include confinc" > confmf
1260 # Ignore all kinds of additional output from 'make'.
1261 case `$am_make -s -f confmf 2> /dev/null` in #(
1262 *the\ am__doit\ target*)
1263 am__include=include
1264 am__quote=
1265 _am_result=GNU
1266 ;;
1267 esac
1268 # Now try BSD make style include.
1269 if test "$am__include" = "#"; then
1270 echo '.include "confinc"' > confmf
1271 case `$am_make -s -f confmf 2> /dev/null` in #(
1272 *the\ am__doit\ target*)
1273 am__include=.include
1274 am__quote="\""
1275 _am_result=BSD
1276 ;;
1277 esac
1278 fi
1279 AC_SUBST([am__include])
1280 AC_SUBST([am__quote])
1281 AC_MSG_RESULT([$_am_result])
1282 rm -f confinc confmf
1283 ])
658 # BSD make does it like this.
659 echo '.include "confinc.mk" # ignored' > confmf.BSD
660 # Other make implementations (GNU, Solaris 10, AIX) do it like this.
661 echo 'include confinc.mk # ignored' > confmf.GNU
662 _am_result=no
663 for s in GNU BSD; do
664 AM_RUN_LOG([${MAKE-make} -f confmf.$s && cat confinc.out])
665 AS_CASE([$?:`cat confinc.out 2>/dev/null`],
666 ['0:this is the am__doit target'],
667 [AS_CASE([$s],
668 [BSD], [am__include='.include' am__quote='"'],
669 [am__include='include' am__quote=''])])
670 if test "$am__include" != "#"; then
671 _am_result="yes ($s style)"
672 break
673 fi
674 done
675 rm -f confinc.* confmf.*
676 AC_MSG_RESULT([${_am_result}])
677 AC_SUBST([am__include])])
678 AC_SUBST([am__quote])])
1284679
1285680 # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*-
1286681
1287 # Copyright (C) 1997-2017 Free Software Foundation, Inc.
682 # Copyright (C) 1997-2018 Free Software Foundation, Inc.
1288683 #
1289684 # This file is free software; the Free Software Foundation
1290685 # gives unlimited permission to copy and/or distribute it,
1323718
1324719 # Helper functions for option handling. -*- Autoconf -*-
1325720
1326 # Copyright (C) 2001-2017 Free Software Foundation, Inc.
721 # Copyright (C) 2001-2018 Free Software Foundation, Inc.
1327722 #
1328723 # This file is free software; the Free Software Foundation
1329724 # gives unlimited permission to copy and/or distribute it,
1352747 AC_DEFUN([_AM_IF_OPTION],
1353748 [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
1354749
1355 # Copyright (C) 1999-2017 Free Software Foundation, Inc.
750 # Copyright (C) 1999-2018 Free Software Foundation, Inc.
1356751 #
1357752 # This file is free software; the Free Software Foundation
1358753 # gives unlimited permission to copy and/or distribute it,
1399794 # For backward compatibility.
1400795 AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])])
1401796
1402 # Copyright (C) 2001-2017 Free Software Foundation, Inc.
797 # Copyright (C) 2001-2018 Free Software Foundation, Inc.
1403798 #
1404799 # This file is free software; the Free Software Foundation
1405800 # gives unlimited permission to copy and/or distribute it,
1418813
1419814 # Check to make sure that the build environment is sane. -*- Autoconf -*-
1420815
1421 # Copyright (C) 1996-2017 Free Software Foundation, Inc.
816 # Copyright (C) 1996-2018 Free Software Foundation, Inc.
1422817 #
1423818 # This file is free software; the Free Software Foundation
1424819 # gives unlimited permission to copy and/or distribute it,
1499894 rm -f conftest.file
1500895 ])
1501896
1502 # Copyright (C) 2009-2017 Free Software Foundation, Inc.
897 # Copyright (C) 2009-2018 Free Software Foundation, Inc.
1503898 #
1504899 # This file is free software; the Free Software Foundation
1505900 # gives unlimited permission to copy and/or distribute it,
1559954 _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
1560955 ])
1561956
1562 # Copyright (C) 2001-2017 Free Software Foundation, Inc.
957 # Copyright (C) 2001-2018 Free Software Foundation, Inc.
1563958 #
1564959 # This file is free software; the Free Software Foundation
1565960 # gives unlimited permission to copy and/or distribute it,
1587982 INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
1588983 AC_SUBST([INSTALL_STRIP_PROGRAM])])
1589984
1590 # Copyright (C) 2006-2017 Free Software Foundation, Inc.
985 # Copyright (C) 2006-2018 Free Software Foundation, Inc.
1591986 #
1592987 # This file is free software; the Free Software Foundation
1593988 # gives unlimited permission to copy and/or distribute it,
16061001
16071002 # Check how to create a tarball. -*- Autoconf -*-
16081003
1609 # Copyright (C) 2004-2017 Free Software Foundation, Inc.
1004 # Copyright (C) 2004-2018 Free Software Foundation, Inc.
16101005 #
16111006 # This file is free software; the Free Software Foundation
16121007 # gives unlimited permission to copy and/or distribute it,
17381133 ]) # _AM_PROG_TAR
17391134
17401135 m4_include([m4/glibtests.m4])
1741 m4_include([m4/intltool.m4])
1136 m4_include([m4/gtk-doc.m4])
1137 m4_include([m4/introspection.m4])
17421138 m4_include([m4/libtool.m4])
17431139 m4_include([m4/ltoptions.m4])
17441140 m4_include([m4/ltsugar.m4])
17451141 m4_include([m4/ltversion.m4])
17461142 m4_include([m4/lt~obsolete.m4])
17471143 m4_include([m4/manywarnings.m4])
1144 m4_include([m4/pkg.m4])
17481145 m4_include([m4/virt-compile-warnings.m4])
1749 m4_include([m4/virt-gettext.m4])
1146 m4_include([m4/virt-nls.m4])
17501147 m4_include([m4/warnings.m4])
0 #!/bin/sh
0 #! /bin/sh
11 # Wrapper for compilers which do not understand '-c -o'.
22
3 scriptversion=2016-01-11.22; # UTC
4
5 # Copyright (C) 1999-2017 Free Software Foundation, Inc.
3 scriptversion=2018-03-07.03; # UTC
4
5 # Copyright (C) 1999-2018 Free Software Foundation, Inc.
66 # Written by Tom Tromey <tromey@cygnus.com>.
77 #
88 # This program is free software; you can redistribute it and/or modify
1616 # GNU General Public License for more details.
1717 #
1818 # You should have received a copy of the GNU General Public License
19 # along with this program. If not, see <http://www.gnu.org/licenses/>.
19 # along with this program. If not, see <https://www.gnu.org/licenses/>.
2020
2121 # As a special exception to the GNU General Public License, if you
2222 # distribute this file as part of a program that contains a
339339 # Local Variables:
340340 # mode: shell-script
341341 # sh-indentation: 2
342 # eval: (add-hook 'write-file-hooks 'time-stamp)
342 # eval: (add-hook 'before-save-hook 'time-stamp)
343343 # time-stamp-start: "scriptversion="
344344 # time-stamp-format: "%:y-%02m-%02d.%02H"
345345 # time-stamp-time-zone: "UTC0"
0 #!/bin/sh
0 #! /bin/sh
11 # Attempt to guess a canonical system name.
2 # Copyright 1992-2017 Free Software Foundation, Inc.
3
4 timestamp='2017-08-08'
2 # Copyright 1992-2018 Free Software Foundation, Inc.
3
4 timestamp='2018-08-29'
55
66 # This file is free software; you can redistribute it and/or modify it
77 # under the terms of the GNU General Public License as published by
1414 # General Public License for more details.
1515 #
1616 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, see <http://www.gnu.org/licenses/>.
17 # along with this program; if not, see <https://www.gnu.org/licenses/>.
1818 #
1919 # As a special exception to the GNU General Public License, if you
2020 # distribute this file as part of a program that contains a
2626 # Originally written by Per Bothner; maintained since 2000 by Ben Elliston.
2727 #
2828 # You can get the latest version of this script from:
29 # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess
29 # https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess
3030 #
3131 # Please send patches to <config-patches@gnu.org>.
3232
3838
3939 Output the configuration name of the system \`$me' is run on.
4040
41 Operation modes:
41 Options:
4242 -h, --help print this help, then exit
4343 -t, --time-stamp print date of last modification, then exit
4444 -v, --version print version number, then exit
4949 GNU config.guess ($timestamp)
5050
5151 Originally written by Per Bothner.
52 Copyright 1992-2017 Free Software Foundation, Inc.
52 Copyright 1992-2018 Free Software Foundation, Inc.
5353
5454 This is free software; see the source for copying conditions. There is NO
5555 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
8383 exit 1
8484 fi
8585
86 trap 'exit 1' 1 2 15
87
8886 # CC_FOR_BUILD -- compiler used by this script. Note that the use of a
8987 # compiler to aid in system detection is discouraged as it requires
9088 # temporary files to be created and, as you can see below, it is a
9593
9694 # Portable tmp directory creation inspired by the Autoconf team.
9795
98 set_cc_for_build='
99 trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ;
100 trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ;
101 : ${TMPDIR=/tmp} ;
102 { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } ||
103 { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } ||
104 { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } ||
105 { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ;
106 dummy=$tmp/dummy ;
107 tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ;
108 case $CC_FOR_BUILD,$HOST_CC,$CC in
109 ,,) echo "int x;" > $dummy.c ;
110 for c in cc gcc c89 c99 ; do
111 if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then
112 CC_FOR_BUILD="$c"; break ;
113 fi ;
114 done ;
115 if test x"$CC_FOR_BUILD" = x ; then
116 CC_FOR_BUILD=no_compiler_found ;
117 fi
118 ;;
119 ,,*) CC_FOR_BUILD=$CC ;;
120 ,*,*) CC_FOR_BUILD=$HOST_CC ;;
121 esac ; set_cc_for_build= ;'
96 tmp=
97 # shellcheck disable=SC2172
98 trap 'test -z "$tmp" || rm -fr "$tmp"' 1 2 13 15
99 trap 'exitcode=$?; test -z "$tmp" || rm -fr "$tmp"; exit $exitcode' 0
100
101 set_cc_for_build() {
102 : "${TMPDIR=/tmp}"
103 # shellcheck disable=SC2039
104 { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } ||
105 { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir "$tmp" 2>/dev/null) ; } ||
106 { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir "$tmp" 2>/dev/null) && echo "Warning: creating insecure temp directory" >&2 ; } ||
107 { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; }
108 dummy=$tmp/dummy
109 case ${CC_FOR_BUILD-},${HOST_CC-},${CC-} in
110 ,,) echo "int x;" > "$dummy.c"
111 for driver in cc gcc c89 c99 ; do
112 if ($driver -c -o "$dummy.o" "$dummy.c") >/dev/null 2>&1 ; then
113 CC_FOR_BUILD="$driver"
114 break
115 fi
116 done
117 if test x"$CC_FOR_BUILD" = x ; then
118 CC_FOR_BUILD=no_compiler_found
119 fi
120 ;;
121 ,,*) CC_FOR_BUILD=$CC ;;
122 ,*,*) CC_FOR_BUILD=$HOST_CC ;;
123 esac
124 }
122125
123126 # This is needed to find uname on a Pyramid OSx when run in the BSD universe.
124127 # (ghazi@noc.rutgers.edu 1994-08-24)
125 if (test -f /.attbin/uname) >/dev/null 2>&1 ; then
128 if test -f /.attbin/uname ; then
126129 PATH=$PATH:/.attbin ; export PATH
127130 fi
128131
131134 UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown
132135 UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown
133136
134 case "${UNAME_SYSTEM}" in
137 case "$UNAME_SYSTEM" in
135138 Linux|GNU|GNU/*)
136139 # If the system lacks a compiler, then just pick glibc.
137140 # We could probably try harder.
138141 LIBC=gnu
139142
140 eval $set_cc_for_build
141 cat <<-EOF > $dummy.c
143 set_cc_for_build
144 cat <<-EOF > "$dummy.c"
142145 #include <features.h>
143146 #if defined(__UCLIBC__)
144147 LIBC=uclibc
148151 LIBC=gnu
149152 #endif
150153 EOF
151 eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC' | sed 's, ,,g'`
154 eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^LIBC' | sed 's, ,,g'`"
155
156 # If ldd exists, use it to detect musl libc.
157 if command -v ldd >/dev/null && \
158 ldd --version 2>&1 | grep -q ^musl
159 then
160 LIBC=musl
161 fi
152162 ;;
153163 esac
154164
155165 # Note: order is significant - the case branches are not exclusive.
156166
157 case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
167 case "$UNAME_MACHINE:$UNAME_SYSTEM:$UNAME_RELEASE:$UNAME_VERSION" in
158168 *:NetBSD:*:*)
159169 # NetBSD (nbsd) targets should (where applicable) match one or
160170 # more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*,
168178 # portion of the name. We always set it to "unknown".
169179 sysctl="sysctl -n hw.machine_arch"
170180 UNAME_MACHINE_ARCH=`(uname -p 2>/dev/null || \
171 /sbin/$sysctl 2>/dev/null || \
172 /usr/sbin/$sysctl 2>/dev/null || \
181 "/sbin/$sysctl" 2>/dev/null || \
182 "/usr/sbin/$sysctl" 2>/dev/null || \
173183 echo unknown)`
174 case "${UNAME_MACHINE_ARCH}" in
184 case "$UNAME_MACHINE_ARCH" in
175185 armeb) machine=armeb-unknown ;;
176186 arm*) machine=arm-unknown ;;
177187 sh3el) machine=shl-unknown ;;
178188 sh3eb) machine=sh-unknown ;;
179189 sh5el) machine=sh5le-unknown ;;
180190 earmv*)
181 arch=`echo ${UNAME_MACHINE_ARCH} | sed -e 's,^e\(armv[0-9]\).*$,\1,'`
182 endian=`echo ${UNAME_MACHINE_ARCH} | sed -ne 's,^.*\(eb\)$,\1,p'`
183 machine=${arch}${endian}-unknown
191 arch=`echo "$UNAME_MACHINE_ARCH" | sed -e 's,^e\(armv[0-9]\).*$,\1,'`
192 endian=`echo "$UNAME_MACHINE_ARCH" | sed -ne 's,^.*\(eb\)$,\1,p'`
193 machine="${arch}${endian}"-unknown
184194 ;;
185 *) machine=${UNAME_MACHINE_ARCH}-unknown ;;
195 *) machine="$UNAME_MACHINE_ARCH"-unknown ;;
186196 esac
187197 # The Operating System including object format, if it has switched
188198 # to ELF recently (or will in the future) and ABI.
189 case "${UNAME_MACHINE_ARCH}" in
199 case "$UNAME_MACHINE_ARCH" in
190200 earm*)
191201 os=netbsdelf
192202 ;;
193203 arm*|i386|m68k|ns32k|sh3*|sparc|vax)
194 eval $set_cc_for_build
204 set_cc_for_build
195205 if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \
196206 | grep -q __ELF__
197207 then
207217 ;;
208218 esac
209219 # Determine ABI tags.
210 case "${UNAME_MACHINE_ARCH}" in
220 case "$UNAME_MACHINE_ARCH" in
211221 earm*)
212222 expr='s/^earmv[0-9]/-eabi/;s/eb$//'
213 abi=`echo ${UNAME_MACHINE_ARCH} | sed -e "$expr"`
223 abi=`echo "$UNAME_MACHINE_ARCH" | sed -e "$expr"`
214224 ;;
215225 esac
216226 # The OS release
218228 # thus, need a distinct triplet. However, they do not need
219229 # kernel version information, so it can be replaced with a
220230 # suitable tag, in the style of linux-gnu.
221 case "${UNAME_VERSION}" in
231 case "$UNAME_VERSION" in
222232 Debian*)
223233 release='-gnu'
224234 ;;
225235 *)
226 release=`echo ${UNAME_RELEASE} | sed -e 's/[-_].*//' | cut -d. -f1,2`
236 release=`echo "$UNAME_RELEASE" | sed -e 's/[-_].*//' | cut -d. -f1,2`
227237 ;;
228238 esac
229239 # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM:
230240 # contains redundant information, the shorter form:
231241 # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used.
232 echo "${machine}-${os}${release}${abi}"
242 echo "$machine-${os}${release}${abi-}"
233243 exit ;;
234244 *:Bitrig:*:*)
235245 UNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'`
236 echo ${UNAME_MACHINE_ARCH}-unknown-bitrig${UNAME_RELEASE}
246 echo "$UNAME_MACHINE_ARCH"-unknown-bitrig"$UNAME_RELEASE"
237247 exit ;;
238248 *:OpenBSD:*:*)
239249 UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'`
240 echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE}
250 echo "$UNAME_MACHINE_ARCH"-unknown-openbsd"$UNAME_RELEASE"
241251 exit ;;
242252 *:LibertyBSD:*:*)
243253 UNAME_MACHINE_ARCH=`arch | sed 's/^.*BSD\.//'`
244 echo ${UNAME_MACHINE_ARCH}-unknown-libertybsd${UNAME_RELEASE}
254 echo "$UNAME_MACHINE_ARCH"-unknown-libertybsd"$UNAME_RELEASE"
255 exit ;;
256 *:MidnightBSD:*:*)
257 echo "$UNAME_MACHINE"-unknown-midnightbsd"$UNAME_RELEASE"
245258 exit ;;
246259 *:ekkoBSD:*:*)
247 echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE}
260 echo "$UNAME_MACHINE"-unknown-ekkobsd"$UNAME_RELEASE"
248261 exit ;;
249262 *:SolidBSD:*:*)
250 echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE}
263 echo "$UNAME_MACHINE"-unknown-solidbsd"$UNAME_RELEASE"
251264 exit ;;
252265 macppc:MirBSD:*:*)
253 echo powerpc-unknown-mirbsd${UNAME_RELEASE}
266 echo powerpc-unknown-mirbsd"$UNAME_RELEASE"
254267 exit ;;
255268 *:MirBSD:*:*)
256 echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE}
269 echo "$UNAME_MACHINE"-unknown-mirbsd"$UNAME_RELEASE"
257270 exit ;;
258271 *:Sortix:*:*)
259 echo ${UNAME_MACHINE}-unknown-sortix
272 echo "$UNAME_MACHINE"-unknown-sortix
260273 exit ;;
261274 *:Redox:*:*)
262 echo ${UNAME_MACHINE}-unknown-redox
263 exit ;;
275 echo "$UNAME_MACHINE"-unknown-redox
276 exit ;;
277 mips:OSF1:*.*)
278 echo mips-dec-osf1
279 exit ;;
264280 alpha:OSF1:*:*)
265281 case $UNAME_RELEASE in
266282 *4.0)
312328 # A Tn.n version is a released field test version.
313329 # A Xn.n version is an unreleased experimental baselevel.
314330 # 1.2 uses "1.2" for uname -r.
315 echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz`
331 echo "$UNAME_MACHINE"-dec-osf"`echo "$UNAME_RELEASE" | sed -e 's/^[PVTX]//' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz`"
316332 # Reset EXIT trap before exiting to avoid spurious non-zero exit code.
317333 exitcode=$?
318334 trap '' 0
319335 exit $exitcode ;;
320 Alpha\ *:Windows_NT*:*)
321 # How do we know it's Interix rather than the generic POSIX subsystem?
322 # Should we change UNAME_MACHINE based on the output of uname instead
323 # of the specific Alpha model?
324 echo alpha-pc-interix
325 exit ;;
326 21064:Windows_NT:50:3)
327 echo alpha-dec-winnt3.5
328 exit ;;
329336 Amiga*:UNIX_System_V:4.0:*)
330337 echo m68k-unknown-sysv4
331338 exit ;;
332339 *:[Aa]miga[Oo][Ss]:*:*)
333 echo ${UNAME_MACHINE}-unknown-amigaos
340 echo "$UNAME_MACHINE"-unknown-amigaos
334341 exit ;;
335342 *:[Mm]orph[Oo][Ss]:*:*)
336 echo ${UNAME_MACHINE}-unknown-morphos
343 echo "$UNAME_MACHINE"-unknown-morphos
337344 exit ;;
338345 *:OS/390:*:*)
339346 echo i370-ibm-openedition
345352 echo powerpc-ibm-os400
346353 exit ;;
347354 arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*)
348 echo arm-acorn-riscix${UNAME_RELEASE}
355 echo arm-acorn-riscix"$UNAME_RELEASE"
349356 exit ;;
350357 arm*:riscos:*:*|arm*:RISCOS:*:*)
351358 echo arm-unknown-riscos
372379 sparc) echo sparc-icl-nx7; exit ;;
373380 esac ;;
374381 s390x:SunOS:*:*)
375 echo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
382 echo "$UNAME_MACHINE"-ibm-solaris2"`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`"
376383 exit ;;
377384 sun4H:SunOS:5.*:*)
378 echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
385 echo sparc-hal-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`"
379386 exit ;;
380387 sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*)
381 echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
388 echo sparc-sun-solaris2"`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`"
382389 exit ;;
383390 i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*)
384 echo i386-pc-auroraux${UNAME_RELEASE}
391 echo i386-pc-auroraux"$UNAME_RELEASE"
385392 exit ;;
386393 i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*)
387 eval $set_cc_for_build
388 SUN_ARCH=i386
389 # If there is a compiler, see if it is configured for 64-bit objects.
390 # Note that the Sun cc does not turn __LP64__ into 1 like gcc does.
391 # This test works for both compilers.
392 if [ "$CC_FOR_BUILD" != no_compiler_found ]; then
393 if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \
394 (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \
395 grep IS_64BIT_ARCH >/dev/null
396 then
397 SUN_ARCH=x86_64
398 fi
399 fi
400 echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
394 UNAME_REL="`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`"
395 case `isainfo -b` in
396 32)
397 echo i386-pc-solaris2"$UNAME_REL"
398 ;;
399 64)
400 echo x86_64-pc-solaris2"$UNAME_REL"
401 ;;
402 esac
401403 exit ;;
402404 sun4*:SunOS:6*:*)
403405 # According to config.sub, this is the proper way to canonicalize
404406 # SunOS6. Hard to guess exactly what SunOS6 will be like, but
405407 # it's likely to be more like Solaris than SunOS4.
406 echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
408 echo sparc-sun-solaris3"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`"
407409 exit ;;
408410 sun4*:SunOS:*:*)
409411 case "`/usr/bin/arch -k`" in
412414 ;;
413415 esac
414416 # Japanese Language versions have a version number like `4.1.3-JL'.
415 echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'`
417 echo sparc-sun-sunos"`echo "$UNAME_RELEASE"|sed -e 's/-/_/'`"
416418 exit ;;
417419 sun3*:SunOS:*:*)
418 echo m68k-sun-sunos${UNAME_RELEASE}
420 echo m68k-sun-sunos"$UNAME_RELEASE"
419421 exit ;;
420422 sun*:*:4.2BSD:*)
421423 UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null`
422 test "x${UNAME_RELEASE}" = x && UNAME_RELEASE=3
424 test "x$UNAME_RELEASE" = x && UNAME_RELEASE=3
423425 case "`/bin/arch`" in
424426 sun3)
425 echo m68k-sun-sunos${UNAME_RELEASE}
427 echo m68k-sun-sunos"$UNAME_RELEASE"
426428 ;;
427429 sun4)
428 echo sparc-sun-sunos${UNAME_RELEASE}
430 echo sparc-sun-sunos"$UNAME_RELEASE"
429431 ;;
430432 esac
431433 exit ;;
432434 aushp:SunOS:*:*)
433 echo sparc-auspex-sunos${UNAME_RELEASE}
435 echo sparc-auspex-sunos"$UNAME_RELEASE"
434436 exit ;;
435437 # The situation for MiNT is a little confusing. The machine name
436438 # can be virtually everything (everything which is not
441443 # MiNT. But MiNT is downward compatible to TOS, so this should
442444 # be no problem.
443445 atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*)
444 echo m68k-atari-mint${UNAME_RELEASE}
446 echo m68k-atari-mint"$UNAME_RELEASE"
445447 exit ;;
446448 atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*)
447 echo m68k-atari-mint${UNAME_RELEASE}
449 echo m68k-atari-mint"$UNAME_RELEASE"
448450 exit ;;
449451 *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*)
450 echo m68k-atari-mint${UNAME_RELEASE}
452 echo m68k-atari-mint"$UNAME_RELEASE"
451453 exit ;;
452454 milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*)
453 echo m68k-milan-mint${UNAME_RELEASE}
455 echo m68k-milan-mint"$UNAME_RELEASE"
454456 exit ;;
455457 hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*)
456 echo m68k-hades-mint${UNAME_RELEASE}
458 echo m68k-hades-mint"$UNAME_RELEASE"
457459 exit ;;
458460 *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*)
459 echo m68k-unknown-mint${UNAME_RELEASE}
461 echo m68k-unknown-mint"$UNAME_RELEASE"
460462 exit ;;
461463 m68k:machten:*:*)
462 echo m68k-apple-machten${UNAME_RELEASE}
464 echo m68k-apple-machten"$UNAME_RELEASE"
463465 exit ;;
464466 powerpc:machten:*:*)
465 echo powerpc-apple-machten${UNAME_RELEASE}
467 echo powerpc-apple-machten"$UNAME_RELEASE"
466468 exit ;;
467469 RISC*:Mach:*:*)
468470 echo mips-dec-mach_bsd4.3
469471 exit ;;
470472 RISC*:ULTRIX:*:*)
471 echo mips-dec-ultrix${UNAME_RELEASE}
473 echo mips-dec-ultrix"$UNAME_RELEASE"
472474 exit ;;
473475 VAX*:ULTRIX*:*:*)
474 echo vax-dec-ultrix${UNAME_RELEASE}
476 echo vax-dec-ultrix"$UNAME_RELEASE"
475477 exit ;;
476478 2020:CLIX:*:* | 2430:CLIX:*:*)
477 echo clipper-intergraph-clix${UNAME_RELEASE}
479 echo clipper-intergraph-clix"$UNAME_RELEASE"
478480 exit ;;
479481 mips:*:*:UMIPS | mips:*:*:RISCos)
480 eval $set_cc_for_build
481 sed 's/^ //' << EOF >$dummy.c
482 set_cc_for_build
483 sed 's/^ //' << EOF > "$dummy.c"
482484 #ifdef __cplusplus
483485 #include <stdio.h> /* for printf() prototype */
484486 int main (int argc, char *argv[]) {
487489 #endif
488490 #if defined (host_mips) && defined (MIPSEB)
489491 #if defined (SYSTYPE_SYSV)
490 printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0);
492 printf ("mips-mips-riscos%ssysv\\n", argv[1]); exit (0);
491493 #endif
492494 #if defined (SYSTYPE_SVR4)
493 printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0);
495 printf ("mips-mips-riscos%ssvr4\\n", argv[1]); exit (0);
494496 #endif
495497 #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD)
496 printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0);
498 printf ("mips-mips-riscos%sbsd\\n", argv[1]); exit (0);
497499 #endif
498500 #endif
499501 exit (-1);
500502 }
501503 EOF
502 $CC_FOR_BUILD -o $dummy $dummy.c &&
503 dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` &&
504 SYSTEM_NAME=`$dummy $dummyarg` &&
504 $CC_FOR_BUILD -o "$dummy" "$dummy.c" &&
505 dummyarg=`echo "$UNAME_RELEASE" | sed -n 's/\([0-9]*\).*/\1/p'` &&
506 SYSTEM_NAME=`"$dummy" "$dummyarg"` &&
505507 { echo "$SYSTEM_NAME"; exit; }
506 echo mips-mips-riscos${UNAME_RELEASE}
508 echo mips-mips-riscos"$UNAME_RELEASE"
507509 exit ;;
508510 Motorola:PowerMAX_OS:*:*)
509511 echo powerpc-motorola-powermax
529531 AViiON:dgux:*:*)
530532 # DG/UX returns AViiON for all architectures
531533 UNAME_PROCESSOR=`/usr/bin/uname -p`
532 if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ]
534 if [ "$UNAME_PROCESSOR" = mc88100 ] || [ "$UNAME_PROCESSOR" = mc88110 ]
533535 then
534 if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \
535 [ ${TARGET_BINARY_INTERFACE}x = x ]
536 if [ "$TARGET_BINARY_INTERFACE"x = m88kdguxelfx ] || \
537 [ "$TARGET_BINARY_INTERFACE"x = x ]
536538 then
537 echo m88k-dg-dgux${UNAME_RELEASE}
539 echo m88k-dg-dgux"$UNAME_RELEASE"
538540 else
539 echo m88k-dg-dguxbcs${UNAME_RELEASE}
541 echo m88k-dg-dguxbcs"$UNAME_RELEASE"
540542 fi
541543 else
542 echo i586-dg-dgux${UNAME_RELEASE}
544 echo i586-dg-dgux"$UNAME_RELEASE"
543545 fi
544546 exit ;;
545547 M88*:DolphinOS:*:*) # DolphinOS (SVR3)
556558 echo m68k-tektronix-bsd
557559 exit ;;
558560 *:IRIX*:*:*)
559 echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'`
561 echo mips-sgi-irix"`echo "$UNAME_RELEASE"|sed -e 's/-/_/g'`"
560562 exit ;;
561563 ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX.
562564 echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id
568570 if [ -x /usr/bin/oslevel ] ; then
569571 IBM_REV=`/usr/bin/oslevel`
570572 else
571 IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE}
572 fi
573 echo ${UNAME_MACHINE}-ibm-aix${IBM_REV}
573 IBM_REV="$UNAME_VERSION.$UNAME_RELEASE"
574 fi
575 echo "$UNAME_MACHINE"-ibm-aix"$IBM_REV"
574576 exit ;;
575577 *:AIX:2:3)
576578 if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then
577 eval $set_cc_for_build
578 sed 's/^ //' << EOF >$dummy.c
579 set_cc_for_build
580 sed 's/^ //' << EOF > "$dummy.c"
579581 #include <sys/systemcfg.h>
580582
581583 main()
586588 exit(0);
587589 }
588590 EOF
589 if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy`
591 if $CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"`
590592 then
591593 echo "$SYSTEM_NAME"
592594 else
600602 exit ;;
601603 *:AIX:*:[4567])
602604 IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'`
603 if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then
605 if /usr/sbin/lsattr -El "$IBM_CPU_ID" | grep ' POWER' >/dev/null 2>&1; then
604606 IBM_ARCH=rs6000
605607 else
606608 IBM_ARCH=powerpc
609611 IBM_REV=`/usr/bin/lslpp -Lqc bos.rte.libc |
610612 awk -F: '{ print $3 }' | sed s/[0-9]*$/0/`
611613 else
612 IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE}
613 fi
614 echo ${IBM_ARCH}-ibm-aix${IBM_REV}
614 IBM_REV="$UNAME_VERSION.$UNAME_RELEASE"
615 fi
616 echo "$IBM_ARCH"-ibm-aix"$IBM_REV"
615617 exit ;;
616618 *:AIX:*:*)
617619 echo rs6000-ibm-aix
618620 exit ;;
619 ibmrt:4.4BSD:*|romp-ibm:BSD:*)
621 ibmrt:4.4BSD:*|romp-ibm:4.4BSD:*)
620622 echo romp-ibm-bsd4.4
621623 exit ;;
622624 ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and
623 echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to
625 echo romp-ibm-bsd"$UNAME_RELEASE" # 4.3 with uname added to
624626 exit ;; # report: romp-ibm BSD 4.3
625627 *:BOSX:*:*)
626628 echo rs6000-bull-bosx
635637 echo m68k-hp-bsd4.4
636638 exit ;;
637639 9000/[34678]??:HP-UX:*:*)
638 HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`
639 case "${UNAME_MACHINE}" in
640 9000/31? ) HP_ARCH=m68000 ;;
641 9000/[34]?? ) HP_ARCH=m68k ;;
640 HPUX_REV=`echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//'`
641 case "$UNAME_MACHINE" in
642 9000/31?) HP_ARCH=m68000 ;;
643 9000/[34]??) HP_ARCH=m68k ;;
642644 9000/[678][0-9][0-9])
643645 if [ -x /usr/bin/getconf ]; then
644646 sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null`
645647 sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null`
646 case "${sc_cpu_version}" in
648 case "$sc_cpu_version" in
647649 523) HP_ARCH=hppa1.0 ;; # CPU_PA_RISC1_0
648650 528) HP_ARCH=hppa1.1 ;; # CPU_PA_RISC1_1
649651 532) # CPU_PA_RISC2_0
650 case "${sc_kernel_bits}" in
652 case "$sc_kernel_bits" in
651653 32) HP_ARCH=hppa2.0n ;;
652654 64) HP_ARCH=hppa2.0w ;;
653655 '') HP_ARCH=hppa2.0 ;; # HP-UX 10.20
654656 esac ;;
655657 esac
656658 fi
657 if [ "${HP_ARCH}" = "" ]; then
658 eval $set_cc_for_build
659 sed 's/^ //' << EOF >$dummy.c
659 if [ "$HP_ARCH" = "" ]; then
660 set_cc_for_build
661 sed 's/^ //' << EOF > "$dummy.c"
660662
661663 #define _HPUX_SOURCE
662664 #include <stdlib.h>
689691 exit (0);
690692 }
691693 EOF
692 (CCOPTS="" $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy`
694 (CCOPTS="" $CC_FOR_BUILD -o "$dummy" "$dummy.c" 2>/dev/null) && HP_ARCH=`"$dummy"`
693695 test -z "$HP_ARCH" && HP_ARCH=hppa
694696 fi ;;
695697 esac
696 if [ ${HP_ARCH} = hppa2.0w ]
698 if [ "$HP_ARCH" = hppa2.0w ]
697699 then
698 eval $set_cc_for_build
700 set_cc_for_build
699701
700702 # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating
701703 # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler
714716 HP_ARCH=hppa64
715717 fi
716718 fi
717 echo ${HP_ARCH}-hp-hpux${HPUX_REV}
719 echo "$HP_ARCH"-hp-hpux"$HPUX_REV"
718720 exit ;;
719721 ia64:HP-UX:*:*)
720 HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`
721 echo ia64-hp-hpux${HPUX_REV}
722 HPUX_REV=`echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//'`
723 echo ia64-hp-hpux"$HPUX_REV"
722724 exit ;;
723725 3050*:HI-UX:*:*)
724 eval $set_cc_for_build
725 sed 's/^ //' << EOF >$dummy.c
726 set_cc_for_build
727 sed 's/^ //' << EOF > "$dummy.c"
726728 #include <unistd.h>
727729 int
728730 main ()
747749 exit (0);
748750 }
749751 EOF
750 $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` &&
752 $CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"` &&
751753 { echo "$SYSTEM_NAME"; exit; }
752754 echo unknown-hitachi-hiuxwe2
753755 exit ;;
754 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* )
756 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:*)
755757 echo hppa1.1-hp-bsd
756758 exit ;;
757759 9000/8??:4.3bsd:*:*)
760762 *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*)
761763 echo hppa1.0-hp-mpeix
762764 exit ;;
763 hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* )
765 hp7??:OSF1:*:* | hp8?[79]:OSF1:*:*)
764766 echo hppa1.1-hp-osf
765767 exit ;;
766768 hp8??:OSF1:*:*)
768770 exit ;;
769771 i*86:OSF1:*:*)
770772 if [ -x /usr/sbin/sysversion ] ; then
771 echo ${UNAME_MACHINE}-unknown-osf1mk
773 echo "$UNAME_MACHINE"-unknown-osf1mk
772774 else
773 echo ${UNAME_MACHINE}-unknown-osf1
775 echo "$UNAME_MACHINE"-unknown-osf1
774776 fi
775777 exit ;;
776778 parisc*:Lites*:*:*)
795797 echo c4-convex-bsd
796798 exit ;;
797799 CRAY*Y-MP:*:*:*)
798 echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
800 echo ymp-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/'
799801 exit ;;
800802 CRAY*[A-Z]90:*:*:*)
801 echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \
803 echo "$UNAME_MACHINE"-cray-unicos"$UNAME_RELEASE" \
802804 | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \
803805 -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \
804806 -e 's/\.[^.]*$/.X/'
805807 exit ;;
806808 CRAY*TS:*:*:*)
807 echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
809 echo t90-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/'
808810 exit ;;
809811 CRAY*T3E:*:*:*)
810 echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
812 echo alphaev5-cray-unicosmk"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/'
811813 exit ;;
812814 CRAY*SV1:*:*:*)
813 echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
815 echo sv1-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/'
814816 exit ;;
815817 *:UNICOS/mp:*:*)
816 echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
818 echo craynv-cray-unicosmp"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/'
817819 exit ;;
818820 F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*)
819821 FUJITSU_PROC=`uname -m | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz`
820822 FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'`
821 FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'`
823 FUJITSU_REL=`echo "$UNAME_RELEASE" | sed -e 's/ /_/'`
822824 echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
823825 exit ;;
824826 5000:UNIX_System_V:4.*:*)
825827 FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'`
826 FUJITSU_REL=`echo ${UNAME_RELEASE} | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/ /_/'`
828 FUJITSU_REL=`echo "$UNAME_RELEASE" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/ /_/'`
827829 echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
828830 exit ;;
829831 i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*)
830 echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE}
832 echo "$UNAME_MACHINE"-pc-bsdi"$UNAME_RELEASE"
831833 exit ;;
832834 sparc*:BSD/OS:*:*)
833 echo sparc-unknown-bsdi${UNAME_RELEASE}
835 echo sparc-unknown-bsdi"$UNAME_RELEASE"
834836 exit ;;
835837 *:BSD/OS:*:*)
836 echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE}
838 echo "$UNAME_MACHINE"-unknown-bsdi"$UNAME_RELEASE"
839 exit ;;
840 arm:FreeBSD:*:*)
841 UNAME_PROCESSOR=`uname -p`
842 set_cc_for_build
843 if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \
844 | grep -q __ARM_PCS_VFP
845 then
846 echo "${UNAME_PROCESSOR}"-unknown-freebsd"`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`"-gnueabi
847 else
848 echo "${UNAME_PROCESSOR}"-unknown-freebsd"`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`"-gnueabihf
849 fi
837850 exit ;;
838851 *:FreeBSD:*:*)
839852 UNAME_PROCESSOR=`/usr/bin/uname -p`
840 case ${UNAME_PROCESSOR} in
853 case "$UNAME_PROCESSOR" in
841854 amd64)
842855 UNAME_PROCESSOR=x86_64 ;;
843856 i386)
844857 UNAME_PROCESSOR=i586 ;;
845858 esac
846 echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`
859 echo "$UNAME_PROCESSOR"-unknown-freebsd"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`"
847860 exit ;;
848861 i*:CYGWIN*:*)
849 echo ${UNAME_MACHINE}-pc-cygwin
862 echo "$UNAME_MACHINE"-pc-cygwin
850863 exit ;;
851864 *:MINGW64*:*)
852 echo ${UNAME_MACHINE}-pc-mingw64
865 echo "$UNAME_MACHINE"-pc-mingw64
853866 exit ;;
854867 *:MINGW*:*)
855 echo ${UNAME_MACHINE}-pc-mingw32
868 echo "$UNAME_MACHINE"-pc-mingw32
856869 exit ;;
857870 *:MSYS*:*)
858 echo ${UNAME_MACHINE}-pc-msys
859 exit ;;
860 i*:windows32*:*)
861 # uname -m includes "-pc" on this system.
862 echo ${UNAME_MACHINE}-mingw32
871 echo "$UNAME_MACHINE"-pc-msys
863872 exit ;;
864873 i*:PW*:*)
865 echo ${UNAME_MACHINE}-pc-pw32
874 echo "$UNAME_MACHINE"-pc-pw32
866875 exit ;;
867876 *:Interix*:*)
868 case ${UNAME_MACHINE} in
877 case "$UNAME_MACHINE" in
869878 x86)
870 echo i586-pc-interix${UNAME_RELEASE}
879 echo i586-pc-interix"$UNAME_RELEASE"
871880 exit ;;
872881 authenticamd | genuineintel | EM64T)
873 echo x86_64-unknown-interix${UNAME_RELEASE}
882 echo x86_64-unknown-interix"$UNAME_RELEASE"
874883 exit ;;
875884 IA64)
876 echo ia64-unknown-interix${UNAME_RELEASE}
885 echo ia64-unknown-interix"$UNAME_RELEASE"
877886 exit ;;
878887 esac ;;
879 [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*)
880 echo i${UNAME_MACHINE}-pc-mks
881 exit ;;
882 8664:Windows_NT:*)
883 echo x86_64-pc-mks
884 exit ;;
885 i*:Windows_NT*:* | Pentium*:Windows_NT*:*)
886 # How do we know it's Interix rather than the generic POSIX subsystem?
887 # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we
888 # UNAME_MACHINE based on the output of uname instead of i386?
889 echo i586-pc-interix
890 exit ;;
891888 i*:UWIN*:*)
892 echo ${UNAME_MACHINE}-pc-uwin
889 echo "$UNAME_MACHINE"-pc-uwin
893890 exit ;;
894891 amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*)
895892 echo x86_64-unknown-cygwin
896893 exit ;;
897 p*:CYGWIN*:*)
898 echo powerpcle-unknown-cygwin
899 exit ;;
900894 prep*:SunOS:5.*:*)
901 echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
895 echo powerpcle-unknown-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`"
902896 exit ;;
903897 *:GNU:*:*)
904898 # the GNU system
905 echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-${LIBC}`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'`
899 echo "`echo "$UNAME_MACHINE"|sed -e 's,[-/].*$,,'`-unknown-$LIBC`echo "$UNAME_RELEASE"|sed -e 's,/.*$,,'`"
906900 exit ;;
907901 *:GNU/*:*:*)
908902 # other systems with GNU libc and userland
909 echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr "[:upper:]" "[:lower:]"``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-${LIBC}
910 exit ;;
911 i*86:Minix:*:*)
912 echo ${UNAME_MACHINE}-pc-minix
903 echo "$UNAME_MACHINE-unknown-`echo "$UNAME_SYSTEM" | sed 's,^[^/]*/,,' | tr "[:upper:]" "[:lower:]"``echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`-$LIBC"
904 exit ;;
905 *:Minix:*:*)
906 echo "$UNAME_MACHINE"-unknown-minix
913907 exit ;;
914908 aarch64:Linux:*:*)
915 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
909 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
916910 exit ;;
917911 aarch64_be:Linux:*:*)
918912 UNAME_MACHINE=aarch64_be
919 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
913 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
920914 exit ;;
921915 alpha:Linux:*:*)
922916 case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in
930924 esac
931925 objdump --private-headers /bin/sh | grep -q ld.so.1
932926 if test "$?" = 0 ; then LIBC=gnulibc1 ; fi
933 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
927 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
934928 exit ;;
935929 arc:Linux:*:* | arceb:Linux:*:*)
936 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
930 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
937931 exit ;;
938932 arm*:Linux:*:*)
939 eval $set_cc_for_build
933 set_cc_for_build
940934 if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \
941935 | grep -q __ARM_EABI__
942936 then
943 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
937 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
944938 else
945939 if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \
946940 | grep -q __ARM_PCS_VFP
947941 then
948 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabi
942 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"eabi
949943 else
950 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabihf
944 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"eabihf
951945 fi
952946 fi
953947 exit ;;
954948 avr32*:Linux:*:*)
955 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
949 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
956950 exit ;;
957951 cris:Linux:*:*)
958 echo ${UNAME_MACHINE}-axis-linux-${LIBC}
952 echo "$UNAME_MACHINE"-axis-linux-"$LIBC"
959953 exit ;;
960954 crisv32:Linux:*:*)
961 echo ${UNAME_MACHINE}-axis-linux-${LIBC}
955 echo "$UNAME_MACHINE"-axis-linux-"$LIBC"
962956 exit ;;
963957 e2k:Linux:*:*)
964 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
958 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
965959 exit ;;
966960 frv:Linux:*:*)
967 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
961 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
968962 exit ;;
969963 hexagon:Linux:*:*)
970 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
964 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
971965 exit ;;
972966 i*86:Linux:*:*)
973 echo ${UNAME_MACHINE}-pc-linux-${LIBC}
967 echo "$UNAME_MACHINE"-pc-linux-"$LIBC"
974968 exit ;;
975969 ia64:Linux:*:*)
976 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
970 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
977971 exit ;;
978972 k1om:Linux:*:*)
979 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
973 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
980974 exit ;;
981975 m32r*:Linux:*:*)
982 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
976 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
983977 exit ;;
984978 m68*:Linux:*:*)
985 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
979 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
986980 exit ;;
987981 mips:Linux:*:* | mips64:Linux:*:*)
988 eval $set_cc_for_build
989 sed 's/^ //' << EOF >$dummy.c
982 set_cc_for_build
983 sed 's/^ //' << EOF > "$dummy.c"
990984 #undef CPU
991985 #undef ${UNAME_MACHINE}
992986 #undef ${UNAME_MACHINE}el
1000994 #endif
1001995 #endif
1002996 EOF
1003 eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'`
1004 test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; }
997 eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^CPU'`"
998 test "x$CPU" != x && { echo "$CPU-unknown-linux-$LIBC"; exit; }
1005999 ;;
10061000 mips64el:Linux:*:*)
1007 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
1001 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
10081002 exit ;;
10091003 openrisc*:Linux:*:*)
1010 echo or1k-unknown-linux-${LIBC}
1004 echo or1k-unknown-linux-"$LIBC"
10111005 exit ;;
10121006 or32:Linux:*:* | or1k*:Linux:*:*)
1013 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
1007 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
10141008 exit ;;
10151009 padre:Linux:*:*)
1016 echo sparc-unknown-linux-${LIBC}
1010 echo sparc-unknown-linux-"$LIBC"
10171011 exit ;;
10181012 parisc64:Linux:*:* | hppa64:Linux:*:*)
1019 echo hppa64-unknown-linux-${LIBC}
1013 echo hppa64-unknown-linux-"$LIBC"
10201014 exit ;;
10211015 parisc:Linux:*:* | hppa:Linux:*:*)
10221016 # Look for CPU level
10231017 case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in
1024 PA7*) echo hppa1.1-unknown-linux-${LIBC} ;;
1025 PA8*) echo hppa2.0-unknown-linux-${LIBC} ;;
1026 *) echo hppa-unknown-linux-${LIBC} ;;
1018 PA7*) echo hppa1.1-unknown-linux-"$LIBC" ;;
1019 PA8*) echo hppa2.0-unknown-linux-"$LIBC" ;;
1020 *) echo hppa-unknown-linux-"$LIBC" ;;
10271021 esac
10281022 exit ;;
10291023 ppc64:Linux:*:*)
1030 echo powerpc64-unknown-linux-${LIBC}
1024 echo powerpc64-unknown-linux-"$LIBC"
10311025 exit ;;
10321026 ppc:Linux:*:*)
1033 echo powerpc-unknown-linux-${LIBC}
1027 echo powerpc-unknown-linux-"$LIBC"
10341028 exit ;;
10351029 ppc64le:Linux:*:*)
1036 echo powerpc64le-unknown-linux-${LIBC}
1030 echo powerpc64le-unknown-linux-"$LIBC"
10371031 exit ;;
10381032 ppcle:Linux:*:*)
1039 echo powerpcle-unknown-linux-${LIBC}
1033 echo powerpcle-unknown-linux-"$LIBC"
10401034 exit ;;
10411035 riscv32:Linux:*:* | riscv64:Linux:*:*)
1042 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
1036 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
10431037 exit ;;
10441038 s390:Linux:*:* | s390x:Linux:*:*)
1045 echo ${UNAME_MACHINE}-ibm-linux-${LIBC}
1039 echo "$UNAME_MACHINE"-ibm-linux-"$LIBC"
10461040 exit ;;
10471041 sh64*:Linux:*:*)
1048 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
1042 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
10491043 exit ;;
10501044 sh*:Linux:*:*)
1051 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
1045 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
10521046 exit ;;
10531047 sparc:Linux:*:* | sparc64:Linux:*:*)
1054 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
1048 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
10551049 exit ;;
10561050 tile*:Linux:*:*)
1057 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
1051 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
10581052 exit ;;
10591053 vax:Linux:*:*)
1060 echo ${UNAME_MACHINE}-dec-linux-${LIBC}
1054 echo "$UNAME_MACHINE"-dec-linux-"$LIBC"
10611055 exit ;;
10621056 x86_64:Linux:*:*)
1063 echo ${UNAME_MACHINE}-pc-linux-${LIBC}
1057 echo "$UNAME_MACHINE"-pc-linux-"$LIBC"
10641058 exit ;;
10651059 xtensa*:Linux:*:*)
1066 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
1060 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
10671061 exit ;;
10681062 i*86:DYNIX/ptx:4*:*)
10691063 # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there.
10771071 # I am not positive that other SVR4 systems won't match this,
10781072 # I just have to hope. -- rms.
10791073 # Use sysv4.2uw... so that sysv4* matches it.
1080 echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION}
1074 echo "$UNAME_MACHINE"-pc-sysv4.2uw"$UNAME_VERSION"
10811075 exit ;;
10821076 i*86:OS/2:*:*)
10831077 # If we were able to find `uname', then EMX Unix compatibility
10841078 # is probably installed.
1085 echo ${UNAME_MACHINE}-pc-os2-emx
1079 echo "$UNAME_MACHINE"-pc-os2-emx
10861080 exit ;;
10871081 i*86:XTS-300:*:STOP)
1088 echo ${UNAME_MACHINE}-unknown-stop
1082 echo "$UNAME_MACHINE"-unknown-stop
10891083 exit ;;
10901084 i*86:atheos:*:*)
1091 echo ${UNAME_MACHINE}-unknown-atheos
1085 echo "$UNAME_MACHINE"-unknown-atheos
10921086 exit ;;
10931087 i*86:syllable:*:*)
1094 echo ${UNAME_MACHINE}-pc-syllable
1088 echo "$UNAME_MACHINE"-pc-syllable
10951089 exit ;;
10961090 i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*)
1097 echo i386-unknown-lynxos${UNAME_RELEASE}
1091 echo i386-unknown-lynxos"$UNAME_RELEASE"
10981092 exit ;;
10991093 i*86:*DOS:*:*)
1100 echo ${UNAME_MACHINE}-pc-msdosdjgpp
1101 exit ;;
1102 i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*)
1103 UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'`
1094 echo "$UNAME_MACHINE"-pc-msdosdjgpp
1095 exit ;;
1096 i*86:*:4.*:*)
1097 UNAME_REL=`echo "$UNAME_RELEASE" | sed 's/\/MP$//'`
11041098 if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then
1105 echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL}
1099 echo "$UNAME_MACHINE"-univel-sysv"$UNAME_REL"
11061100 else
1107 echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL}
1101 echo "$UNAME_MACHINE"-pc-sysv"$UNAME_REL"
11081102 fi
11091103 exit ;;
11101104 i*86:*:5:[678]*)
11141108 *Pentium) UNAME_MACHINE=i586 ;;
11151109 *Pent*|*Celeron) UNAME_MACHINE=i686 ;;
11161110 esac
1117 echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION}
1111 echo "$UNAME_MACHINE-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}{$UNAME_VERSION}"
11181112 exit ;;
11191113 i*86:*:3.2:*)
11201114 if test -f /usr/options/cb.name; then
11211115 UNAME_REL=`sed -n 's/.*Version //p' </usr/options/cb.name`
1122 echo ${UNAME_MACHINE}-pc-isc$UNAME_REL
1116 echo "$UNAME_MACHINE"-pc-isc"$UNAME_REL"
11231117 elif /bin/uname -X 2>/dev/null >/dev/null ; then
11241118 UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')`
11251119 (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486
11291123 && UNAME_MACHINE=i686
11301124 (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \
11311125 && UNAME_MACHINE=i686
1132 echo ${UNAME_MACHINE}-pc-sco$UNAME_REL
1126 echo "$UNAME_MACHINE"-pc-sco"$UNAME_REL"
11331127 else
1134 echo ${UNAME_MACHINE}-pc-sysv32
1128 echo "$UNAME_MACHINE"-pc-sysv32
11351129 fi
11361130 exit ;;
11371131 pc:*:*:*)
11511145 exit ;;
11521146 i860:*:4.*:*) # i860-SVR4
11531147 if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then
1154 echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4
1148 echo i860-stardent-sysv"$UNAME_RELEASE" # Stardent Vistra i860-SVR4
11551149 else # Add other i860-SVR4 vendors below as they are discovered.
1156 echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4
1150 echo i860-unknown-sysv"$UNAME_RELEASE" # Unknown i860-SVR4
11571151 fi
11581152 exit ;;
11591153 mini*:CTIX:SYS*5:*)
11731167 test -r /etc/.relid \
11741168 && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid`
11751169 /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
1176 && { echo i486-ncr-sysv4.3${OS_REL}; exit; }
1170 && { echo i486-ncr-sysv4.3"$OS_REL"; exit; }
11771171 /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \
1178 && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;;
1172 && { echo i586-ncr-sysv4.3"$OS_REL"; exit; } ;;
11791173 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*)
11801174 /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
11811175 && { echo i486-ncr-sysv4; exit; } ;;
11841178 test -r /etc/.relid \
11851179 && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid`
11861180 /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
1187 && { echo i486-ncr-sysv4.3${OS_REL}; exit; }
1181 && { echo i486-ncr-sysv4.3"$OS_REL"; exit; }
11881182 /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \
1189 && { echo i586-ncr-sysv4.3${OS_REL}; exit; }
1183 && { echo i586-ncr-sysv4.3"$OS_REL"; exit; }
11901184 /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \
1191 && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;;
1185 && { echo i586-ncr-sysv4.3"$OS_REL"; exit; } ;;
11921186 m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*)
1193 echo m68k-unknown-lynxos${UNAME_RELEASE}
1187 echo m68k-unknown-lynxos"$UNAME_RELEASE"
11941188 exit ;;
11951189 mc68030:UNIX_System_V:4.*:*)
11961190 echo m68k-atari-sysv4
11971191 exit ;;
11981192 TSUNAMI:LynxOS:2.*:*)
1199 echo sparc-unknown-lynxos${UNAME_RELEASE}
1193 echo sparc-unknown-lynxos"$UNAME_RELEASE"
12001194 exit ;;
12011195 rs6000:LynxOS:2.*:*)
1202 echo rs6000-unknown-lynxos${UNAME_RELEASE}
1196 echo rs6000-unknown-lynxos"$UNAME_RELEASE"
12031197 exit ;;
12041198 PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*)
1205 echo powerpc-unknown-lynxos${UNAME_RELEASE}
1199 echo powerpc-unknown-lynxos"$UNAME_RELEASE"
12061200 exit ;;
12071201 SM[BE]S:UNIX_SV:*:*)
1208 echo mips-dde-sysv${UNAME_RELEASE}
1202 echo mips-dde-sysv"$UNAME_RELEASE"
12091203 exit ;;
12101204 RM*:ReliantUNIX-*:*:*)
12111205 echo mips-sni-sysv4
12161210 *:SINIX-*:*:*)
12171211 if uname -p 2>/dev/null >/dev/null ; then
12181212 UNAME_MACHINE=`(uname -p) 2>/dev/null`
1219 echo ${UNAME_MACHINE}-sni-sysv4
1213 echo "$UNAME_MACHINE"-sni-sysv4
12201214 else
12211215 echo ns32k-sni-sysv
12221216 fi
12361230 exit ;;
12371231 i*86:VOS:*:*)
12381232 # From Paul.Green@stratus.com.
1239 echo ${UNAME_MACHINE}-stratus-vos
1233 echo "$UNAME_MACHINE"-stratus-vos
12401234 exit ;;
12411235 *:VOS:*:*)
12421236 # From Paul.Green@stratus.com.
12431237 echo hppa1.1-stratus-vos
12441238 exit ;;
12451239 mc68*:A/UX:*:*)
1246 echo m68k-apple-aux${UNAME_RELEASE}
1240 echo m68k-apple-aux"$UNAME_RELEASE"
12471241 exit ;;
12481242 news*:NEWS-OS:6*:*)
12491243 echo mips-sony-newsos6
12501244 exit ;;
12511245 R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*)
12521246 if [ -d /usr/nec ]; then
1253 echo mips-nec-sysv${UNAME_RELEASE}
1247 echo mips-nec-sysv"$UNAME_RELEASE"
12541248 else
1255 echo mips-unknown-sysv${UNAME_RELEASE}
1249 echo mips-unknown-sysv"$UNAME_RELEASE"
12561250 fi
12571251 exit ;;
12581252 BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only.
12711265 echo x86_64-unknown-haiku
12721266 exit ;;
12731267 SX-4:SUPER-UX:*:*)
1274 echo sx4-nec-superux${UNAME_RELEASE}
1268 echo sx4-nec-superux"$UNAME_RELEASE"
12751269 exit ;;
12761270 SX-5:SUPER-UX:*:*)
1277 echo sx5-nec-superux${UNAME_RELEASE}
1271 echo sx5-nec-superux"$UNAME_RELEASE"
12781272 exit ;;
12791273 SX-6:SUPER-UX:*:*)
1280 echo sx6-nec-superux${UNAME_RELEASE}
1274 echo sx6-nec-superux"$UNAME_RELEASE"
12811275 exit ;;
12821276 SX-7:SUPER-UX:*:*)
1283 echo sx7-nec-superux${UNAME_RELEASE}
1277 echo sx7-nec-superux"$UNAME_RELEASE"
12841278 exit ;;
12851279 SX-8:SUPER-UX:*:*)
1286 echo sx8-nec-superux${UNAME_RELEASE}
1280 echo sx8-nec-superux"$UNAME_RELEASE"
12871281 exit ;;
12881282 SX-8R:SUPER-UX:*:*)
1289 echo sx8r-nec-superux${UNAME_RELEASE}
1283 echo sx8r-nec-superux"$UNAME_RELEASE"
12901284 exit ;;
12911285 SX-ACE:SUPER-UX:*:*)
1292 echo sxace-nec-superux${UNAME_RELEASE}
1286 echo sxace-nec-superux"$UNAME_RELEASE"
12931287 exit ;;
12941288 Power*:Rhapsody:*:*)
1295 echo powerpc-apple-rhapsody${UNAME_RELEASE}
1289 echo powerpc-apple-rhapsody"$UNAME_RELEASE"
12961290 exit ;;
12971291 *:Rhapsody:*:*)
1298 echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE}
1292 echo "$UNAME_MACHINE"-apple-rhapsody"$UNAME_RELEASE"
12991293 exit ;;
13001294 *:Darwin:*:*)
13011295 UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown
1302 eval $set_cc_for_build
1296 set_cc_for_build
13031297 if test "$UNAME_PROCESSOR" = unknown ; then
13041298 UNAME_PROCESSOR=powerpc
13051299 fi
1306 if test `echo "$UNAME_RELEASE" | sed -e 's/\..*//'` -le 10 ; then
1300 if test "`echo "$UNAME_RELEASE" | sed -e 's/\..*//'`" -le 10 ; then
13071301 if [ "$CC_FOR_BUILD" != no_compiler_found ]; then
13081302 if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \
13091303 (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \
13311325 # that Apple uses in portable devices.
13321326 UNAME_PROCESSOR=x86_64
13331327 fi
1334 echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE}
1328 echo "$UNAME_PROCESSOR"-apple-darwin"$UNAME_RELEASE"
13351329 exit ;;
13361330 *:procnto*:*:* | *:QNX:[0123456789]*:*)
13371331 UNAME_PROCESSOR=`uname -p`
13391333 UNAME_PROCESSOR=i386
13401334 UNAME_MACHINE=pc
13411335 fi
1342 echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE}
1336 echo "$UNAME_PROCESSOR"-"$UNAME_MACHINE"-nto-qnx"$UNAME_RELEASE"
13431337 exit ;;
13441338 *:QNX:*:4*)
13451339 echo i386-pc-qnx
13461340 exit ;;
13471341 NEO-*:NONSTOP_KERNEL:*:*)
1348 echo neo-tandem-nsk${UNAME_RELEASE}
1342 echo neo-tandem-nsk"$UNAME_RELEASE"
13491343 exit ;;
13501344 NSE-*:NONSTOP_KERNEL:*:*)
1351 echo nse-tandem-nsk${UNAME_RELEASE}
1345 echo nse-tandem-nsk"$UNAME_RELEASE"
13521346 exit ;;
13531347 NSR-*:NONSTOP_KERNEL:*:*)
1354 echo nsr-tandem-nsk${UNAME_RELEASE}
1348 echo nsr-tandem-nsk"$UNAME_RELEASE"
1349 exit ;;
1350 NSV-*:NONSTOP_KERNEL:*:*)
1351 echo nsv-tandem-nsk"$UNAME_RELEASE"
13551352 exit ;;
13561353 NSX-*:NONSTOP_KERNEL:*:*)
1357 echo nsx-tandem-nsk${UNAME_RELEASE}
1354 echo nsx-tandem-nsk"$UNAME_RELEASE"
13581355 exit ;;
13591356 *:NonStop-UX:*:*)
13601357 echo mips-compaq-nonstopux
13631360 echo bs2000-siemens-sysv
13641361 exit ;;
13651362 DS/*:UNIX_System_V:*:*)
1366 echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE}
1363 echo "$UNAME_MACHINE"-"$UNAME_SYSTEM"-"$UNAME_RELEASE"
13671364 exit ;;
13681365 *:Plan9:*:*)
13691366 # "uname -m" is not consistent, so use $cputype instead. 386
13701367 # is converted to i386 for consistency with other x86
13711368 # operating systems.
1369 # shellcheck disable=SC2154
13721370 if test "$cputype" = 386; then
13731371 UNAME_MACHINE=i386
13741372 else
13751373 UNAME_MACHINE="$cputype"
13761374 fi
1377 echo ${UNAME_MACHINE}-unknown-plan9
1375 echo "$UNAME_MACHINE"-unknown-plan9
13781376 exit ;;
13791377 *:TOPS-10:*:*)
13801378 echo pdp10-unknown-tops10
13951393 echo pdp10-unknown-its
13961394 exit ;;
13971395 SEI:*:*:SEIUX)
1398 echo mips-sei-seiux${UNAME_RELEASE}
1396 echo mips-sei-seiux"$UNAME_RELEASE"
13991397 exit ;;
14001398 *:DragonFly:*:*)
1401 echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`
1399 echo "$UNAME_MACHINE"-unknown-dragonfly"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`"
14021400 exit ;;
14031401 *:*VMS:*:*)
14041402 UNAME_MACHINE=`(uname -p) 2>/dev/null`
1405 case "${UNAME_MACHINE}" in
1403 case "$UNAME_MACHINE" in
14061404 A*) echo alpha-dec-vms ; exit ;;
14071405 I*) echo ia64-dec-vms ; exit ;;
14081406 V*) echo vax-dec-vms ; exit ;;
14111409 echo i386-pc-xenix
14121410 exit ;;
14131411 i*86:skyos:*:*)
1414 echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE} | sed -e 's/ .*$//'`
1412 echo "$UNAME_MACHINE"-pc-skyos"`echo "$UNAME_RELEASE" | sed -e 's/ .*$//'`"
14151413 exit ;;
14161414 i*86:rdos:*:*)
1417 echo ${UNAME_MACHINE}-pc-rdos
1415 echo "$UNAME_MACHINE"-pc-rdos
14181416 exit ;;
14191417 i*86:AROS:*:*)
1420 echo ${UNAME_MACHINE}-pc-aros
1418 echo "$UNAME_MACHINE"-pc-aros
14211419 exit ;;
14221420 x86_64:VMkernel:*:*)
1423 echo ${UNAME_MACHINE}-unknown-esx
1421 echo "$UNAME_MACHINE"-unknown-esx
14241422 exit ;;
14251423 amd64:Isilon\ OneFS:*:*)
14261424 echo x86_64-unknown-onefs
14271425 exit ;;
14281426 esac
14291427
1428 echo "$0: unable to guess system type" >&2
1429
1430 case "$UNAME_MACHINE:$UNAME_SYSTEM" in
1431 mips:Linux | mips64:Linux)
1432 # If we got here on MIPS GNU/Linux, output extra information.
1433 cat >&2 <<EOF
1434
1435 NOTE: MIPS GNU/Linux systems require a C compiler to fully recognize
1436 the system type. Please install a C compiler and try again.
1437 EOF
1438 ;;
1439 esac
1440
14301441 cat >&2 <<EOF
1431 $0: unable to guess system type
14321442
14331443 This script (version $timestamp), has failed to recognize the
14341444 operating system you are using. If your script is old, overwrite *all*
14351445 copies of config.guess and config.sub with the latest versions from:
14361446
1437 http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess
1447 https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess
14381448 and
1439 http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub
1449 https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub
14401450
14411451 If $0 has already been updated, send the following data and any
14421452 information you think might be pertinent to config-patches@gnu.org to
14591469 /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null`
14601470 /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null`
14611471
1462 UNAME_MACHINE = ${UNAME_MACHINE}
1463 UNAME_RELEASE = ${UNAME_RELEASE}
1464 UNAME_SYSTEM = ${UNAME_SYSTEM}
1465 UNAME_VERSION = ${UNAME_VERSION}
1472 UNAME_MACHINE = "$UNAME_MACHINE"
1473 UNAME_RELEASE = "$UNAME_RELEASE"
1474 UNAME_SYSTEM = "$UNAME_SYSTEM"
1475 UNAME_VERSION = "$UNAME_VERSION"
14661476 EOF
14671477
14681478 exit 1
14691479
14701480 # Local variables:
1471 # eval: (add-hook 'write-file-hooks 'time-stamp)
1481 # eval: (add-hook 'before-save-hook 'time-stamp)
14721482 # time-stamp-start: "timestamp='"
14731483 # time-stamp-format: "%:y-%02m-%02d"
14741484 # time-stamp-end: "'"
0 #!/bin/sh
0 #! /bin/sh
11 # Configuration validation subroutine script.
2 # Copyright 1992-2017 Free Software Foundation, Inc.
3
4 timestamp='2017-04-02'
2 # Copyright 1992-2018 Free Software Foundation, Inc.
3
4 timestamp='2018-08-29'
55
66 # This file is free software; you can redistribute it and/or modify it
77 # under the terms of the GNU General Public License as published by
1414 # General Public License for more details.
1515 #
1616 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, see <http://www.gnu.org/licenses/>.
17 # along with this program; if not, see <https://www.gnu.org/licenses/>.
1818 #
1919 # As a special exception to the GNU General Public License, if you
2020 # distribute this file as part of a program that contains a
3232 # Otherwise, we print the canonical config type on stdout and succeed.
3333
3434 # You can get the latest version of this script from:
35 # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub
35 # https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub
3636
3737 # This file is supposed to be the same for all GNU packages
3838 # and recognize all the CPU types, system types and aliases
5656
5757 Canonicalize a configuration name.
5858
59 Operation modes:
59 Options:
6060 -h, --help print this help, then exit
6161 -t, --time-stamp print date of last modification, then exit
6262 -v, --version print version number, then exit
6666 version="\
6767 GNU config.sub ($timestamp)
6868
69 Copyright 1992-2017 Free Software Foundation, Inc.
69 Copyright 1992-2018 Free Software Foundation, Inc.
7070
7171 This is free software; see the source for copying conditions. There is NO
7272 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
9393
9494 *local*)
9595 # First pass through any local machine types.
96 echo $1
96 echo "$1"
9797 exit ;;
9898
9999 * )
109109 exit 1;;
110110 esac
111111
112 # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any).
113 # Here we must recognize all the valid KERNEL-OS combinations.
114 maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'`
115 case $maybe_os in
116 nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \
117 linux-musl* | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \
118 knetbsd*-gnu* | netbsd*-gnu* | netbsd*-eabi* | \
119 kopensolaris*-gnu* | cloudabi*-eabi* | \
120 storm-chaos* | os2-emx* | rtmk-nova*)
121 os=-$maybe_os
122 basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`
123 ;;
124 android-linux)
125 os=-linux-android
126 basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown
127 ;;
128 *)
129 basic_machine=`echo $1 | sed 's/-[^-]*$//'`
130 if [ $basic_machine != $1 ]
131 then os=`echo $1 | sed 's/.*-/-/'`
132 else os=; fi
133 ;;
112 # Split fields of configuration type
113 IFS="-" read -r field1 field2 field3 field4 <<EOF
114 $1
115 EOF
116
117 # Separate into logical components for further validation
118 case $1 in
119 *-*-*-*-*)
120 echo Invalid configuration \`"$1"\': more than four components >&2
121 exit 1
122 ;;
123 *-*-*-*)
124 basic_machine=$field1-$field2
125 os=$field3-$field4
126 ;;
127 *-*-*)
128 # Ambiguous whether COMPANY is present, or skipped and KERNEL-OS is two
129 # parts
130 maybe_os=$field2-$field3
131 case $maybe_os in
132 nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc \
133 | linux-newlib* | linux-musl* | linux-uclibc* | uclinux-uclibc* \
134 | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* \
135 | netbsd*-eabi* | kopensolaris*-gnu* | cloudabi*-eabi* \
136 | storm-chaos* | os2-emx* | rtmk-nova*)
137 basic_machine=$field1
138 os=$maybe_os
139 ;;
140 android-linux)
141 basic_machine=$field1-unknown
142 os=linux-android
143 ;;
144 *)
145 basic_machine=$field1-$field2
146 os=$field3
147 ;;
148 esac
149 ;;
150 *-*)
151 # A lone config we happen to match not fitting any patern
152 case $field1-$field2 in
153 decstation-3100)
154 basic_machine=mips-dec
155 os=
156 ;;
157 *-*)
158 # Second component is usually, but not always the OS
159 case $field2 in
160 # Prevent following clause from handling this valid os
161 sun*os*)
162 basic_machine=$field1
163 os=$field2
164 ;;
165 # Manufacturers
166 dec* | mips* | sequent* | encore* | pc533* | sgi* | sony* \
167 | att* | 7300* | 3300* | delta* | motorola* | sun[234]* \
168 | unicom* | ibm* | next | hp | isi* | apollo | altos* \
169 | convergent* | ncr* | news | 32* | 3600* | 3100* \
170 | hitachi* | c[123]* | convex* | sun | crds | omron* | dg \
171 | ultra | tti* | harris | dolphin | highlevel | gould \
172 | cbm | ns | masscomp | apple | axis | knuth | cray \
173 | microblaze* | sim | cisco \
174 | oki | wec | wrs | winbond)
175 basic_machine=$field1-$field2
176 os=
177 ;;
178 *)
179 basic_machine=$field1
180 os=$field2
181 ;;
182 esac
183 ;;
184 esac
185 ;;
186 *)
187 # Convert single-component short-hands not valid as part of
188 # multi-component configurations.
189 case $field1 in
190 386bsd)
191 basic_machine=i386-pc
192 os=bsd
193 ;;
194 a29khif)
195 basic_machine=a29k-amd
196 os=udi
197 ;;
198 adobe68k)
199 basic_machine=m68010-adobe
200 os=scout
201 ;;
202 alliant)
203 basic_machine=fx80-alliant
204 os=
205 ;;
206 altos | altos3068)
207 basic_machine=m68k-altos
208 os=
209 ;;
210 am29k)
211 basic_machine=a29k-none
212 os=bsd
213 ;;
214 amdahl)
215 basic_machine=580-amdahl
216 os=sysv
217 ;;
218 amiga)
219 basic_machine=m68k-unknown
220 os=
221 ;;
222 amigaos | amigados)
223 basic_machine=m68k-unknown
224 os=amigaos
225 ;;
226 amigaunix | amix)
227 basic_machine=m68k-unknown
228 os=sysv4
229 ;;
230 apollo68)
231 basic_machine=m68k-apollo
232 os=sysv
233 ;;
234 apollo68bsd)
235 basic_machine=m68k-apollo
236 os=bsd
237 ;;
238 aros)
239 basic_machine=i386-pc
240 os=aros
241 ;;
242 aux)
243 basic_machine=m68k-apple
244 os=aux
245 ;;
246 balance)
247 basic_machine=ns32k-sequent
248 os=dynix
249 ;;
250 blackfin)
251 basic_machine=bfin-unknown
252 os=linux
253 ;;
254 cegcc)
255 basic_machine=arm-unknown
256 os=cegcc
257 ;;
258 convex-c1)
259 basic_machine=c1-convex
260 os=bsd
261 ;;
262 convex-c2)
263 basic_machine=c2-convex
264 os=bsd
265 ;;
266 convex-c32)
267 basic_machine=c32-convex
268 os=bsd
269 ;;
270 convex-c34)
271 basic_machine=c34-convex
272 os=bsd
273 ;;
274 convex-c38)
275 basic_machine=c38-convex
276 os=bsd
277 ;;
278 cray)
279 basic_machine=j90-cray
280 os=unicos
281 ;;
282 crds | unos)
283 basic_machine=m68k-crds
284 os=
285 ;;
286 da30)
287 basic_machine=m68k-da30
288 os=
289 ;;
290 decstation | pmax | pmin | dec3100 | decstatn)
291 basic_machine=mips-dec
292 os=
293 ;;
294 delta88)
295 basic_machine=m88k-motorola
296 os=sysv3
297 ;;
298 dicos)
299 basic_machine=i686-pc
300 os=dicos
301 ;;
302 djgpp)
303 basic_machine=i586-pc
304 os=msdosdjgpp
305 ;;
306 ebmon29k)
307 basic_machine=a29k-amd
308 os=ebmon
309 ;;
310 es1800 | OSE68k | ose68k | ose | OSE)
311 basic_machine=m68k-ericsson
312 os=ose
313 ;;
314 gmicro)
315 basic_machine=tron-gmicro
316 os=sysv
317 ;;
318 go32)
319 basic_machine=i386-pc
320 os=go32
321 ;;
322 h8300hms)
323 basic_machine=h8300-hitachi
324 os=hms
325 ;;
326 h8300xray)
327 basic_machine=h8300-hitachi
328 os=xray
329 ;;
330 h8500hms)
331 basic_machine=h8500-hitachi
332 os=hms
333 ;;
334 harris)
335 basic_machine=m88k-harris
336 os=sysv3
337 ;;
338 hp300)
339 basic_machine=m68k-hp
340 ;;
341 hp300bsd)
342 basic_machine=m68k-hp
343 os=bsd
344 ;;
345 hp300hpux)
346 basic_machine=m68k-hp
347 os=hpux
348 ;;
349 hppaosf)
350 basic_machine=hppa1.1-hp
351 os=osf
352 ;;
353 hppro)
354 basic_machine=hppa1.1-hp
355 os=proelf
356 ;;
357 i386mach)
358 basic_machine=i386-mach
359 os=mach
360 ;;
361 vsta)
362 basic_machine=i386-pc
363 os=vsta
364 ;;
365 isi68 | isi)
366 basic_machine=m68k-isi
367 os=sysv
368 ;;
369 m68knommu)
370 basic_machine=m68k-unknown
371 os=linux
372 ;;
373 magnum | m3230)
374 basic_machine=mips-mips
375 os=sysv
376 ;;
377 merlin)
378 basic_machine=ns32k-utek
379 os=sysv
380 ;;
381 mingw64)
382 basic_machine=x86_64-pc
383 os=mingw64
384 ;;
385 mingw32)
386 basic_machine=i686-pc
387 os=mingw32
388 ;;
389 mingw32ce)
390 basic_machine=arm-unknown
391 os=mingw32ce
392 ;;
393 monitor)
394 basic_machine=m68k-rom68k
395 os=coff
396 ;;
397 morphos)
398 basic_machine=powerpc-unknown
399 os=morphos
400 ;;
401 moxiebox)
402 basic_machine=moxie-unknown
403 os=moxiebox
404 ;;
405 msdos)
406 basic_machine=i386-pc
407 os=msdos
408 ;;
409 msys)
410 basic_machine=i686-pc
411 os=msys
412 ;;
413 mvs)
414 basic_machine=i370-ibm
415 os=mvs
416 ;;
417 nacl)
418 basic_machine=le32-unknown
419 os=nacl
420 ;;
421 ncr3000)
422 basic_machine=i486-ncr
423 os=sysv4
424 ;;
425 netbsd386)
426 basic_machine=i386-pc
427 os=netbsd
428 ;;
429 netwinder)
430 basic_machine=armv4l-rebel
431 os=linux
432 ;;
433 news | news700 | news800 | news900)
434 basic_machine=m68k-sony
435 os=newsos
436 ;;
437 news1000)
438 basic_machine=m68030-sony
439 os=newsos
440 ;;
441 necv70)
442 basic_machine=v70-nec
443 os=sysv
444 ;;
445 nh3000)
446 basic_machine=m68k-harris
447 os=cxux
448 ;;
449 nh[45]000)
450 basic_machine=m88k-harris
451 os=cxux
452 ;;
453 nindy960)
454 basic_machine=i960-intel
455 os=nindy
456 ;;
457 mon960)
458 basic_machine=i960-intel
459 os=mon960
460 ;;
461 nonstopux)
462 basic_machine=mips-compaq
463 os=nonstopux
464 ;;
465 os400)
466 basic_machine=powerpc-ibm
467 os=os400
468 ;;
469 OSE68000 | ose68000)
470 basic_machine=m68000-ericsson
471 os=ose
472 ;;
473 os68k)
474 basic_machine=m68k-none
475 os=os68k
476 ;;
477 paragon)
478 basic_machine=i860-intel
479 os=osf
480 ;;
481 parisc)
482 basic_machine=hppa-unknown
483 os=linux
484 ;;
485 pw32)
486 basic_machine=i586-unknown
487 os=pw32
488 ;;
489 rdos | rdos64)
490 basic_machine=x86_64-pc
491 os=rdos
492 ;;
493 rdos32)
494 basic_machine=i386-pc
495 os=rdos
496 ;;
497 rom68k)
498 basic_machine=m68k-rom68k
499 os=coff
500 ;;
501 sa29200)
502 basic_machine=a29k-amd
503 os=udi
504 ;;
505 sei)
506 basic_machine=mips-sei
507 os=seiux
508 ;;
509 sequent)
510 basic_machine=i386-sequent
511 os=
512 ;;
513 sps7)
514 basic_machine=m68k-bull
515 os=sysv2
516 ;;
517 st2000)
518 basic_machine=m68k-tandem
519 os=
520 ;;
521 stratus)
522 basic_machine=i860-stratus
523 os=sysv4
524 ;;
525 sun2)
526 basic_machine=m68000-sun
527 os=
528 ;;
529 sun2os3)
530 basic_machine=m68000-sun
531 os=sunos3
532 ;;
533 sun2os4)
534 basic_machine=m68000-sun
535 os=sunos4
536 ;;
537 sun3)
538 basic_machine=m68k-sun
539 os=
540 ;;
541 sun3os3)
542 basic_machine=m68k-sun
543 os=sunos3
544 ;;
545 sun3os4)
546 basic_machine=m68k-sun
547 os=sunos4
548 ;;
549 sun4)
550 basic_machine=sparc-sun
551 os=
552 ;;
553 sun4os3)
554 basic_machine=sparc-sun
555 os=sunos3
556 ;;
557 sun4os4)
558 basic_machine=sparc-sun
559 os=sunos4
560 ;;
561 sun4sol2)
562 basic_machine=sparc-sun
563 os=solaris2
564 ;;
565 sun386 | sun386i | roadrunner)
566 basic_machine=i386-sun
567 os=
568 ;;
569 sv1)
570 basic_machine=sv1-cray
571 os=unicos
572 ;;
573 symmetry)
574 basic_machine=i386-sequent
575 os=dynix
576 ;;
577 t3e)
578 basic_machine=alphaev5-cray
579 os=unicos
580 ;;
581 t90)
582 basic_machine=t90-cray
583 os=unicos
584 ;;
585 toad1)
586 basic_machine=pdp10-xkl
587 os=tops20
588 ;;
589 tpf)
590 basic_machine=s390x-ibm
591 os=tpf
592 ;;
593 udi29k)
594 basic_machine=a29k-amd
595 os=udi
596 ;;
597 ultra3)
598 basic_machine=a29k-nyu
599 os=sym1
600 ;;
601 v810 | necv810)
602 basic_machine=v810-nec
603 os=none
604 ;;
605 vaxv)
606 basic_machine=vax-dec
607 os=sysv
608 ;;
609 vms)
610 basic_machine=vax-dec
611 os=vms
612 ;;
613 vxworks960)
614 basic_machine=i960-wrs
615 os=vxworks
616 ;;
617 vxworks68)
618 basic_machine=m68k-wrs
619 os=vxworks
620 ;;
621 vxworks29k)
622 basic_machine=a29k-wrs
623 os=vxworks
624 ;;
625 xbox)
626 basic_machine=i686-pc
627 os=mingw32
628 ;;
629 ymp)
630 basic_machine=ymp-cray
631 os=unicos
632 ;;
633 *)
634 basic_machine=$1
635 os=
636 ;;
637 esac
638 ;;
134639 esac
135640
136 ### Let's recognize common machines as not being operating systems so
137 ### that things like config.sub decstation-3100 work. We also
138 ### recognize some manufacturers as not being operating systems, so we
139 ### can provide default operating systems below.
140 case $os in
141 -sun*os*)
142 # Prevent following clause from handling this invalid input.
143 ;;
144 -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \
145 -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \
146 -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \
147 -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\
148 -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \
149 -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \
150 -apple | -axis | -knuth | -cray | -microblaze*)
151 os=
152 basic_machine=$1
153 ;;
154 -bluegene*)
155 os=-cnk
156 ;;
157 -sim | -cisco | -oki | -wec | -winbond)
158 os=
159 basic_machine=$1
160 ;;
161 -scout)
162 ;;
163 -wrs)
164 os=-vxworks
165 basic_machine=$1
166 ;;
167 -chorusos*)
168 os=-chorusos
169 basic_machine=$1
170 ;;
171 -chorusrdb)
172 os=-chorusrdb
173 basic_machine=$1
174 ;;
175 -hiux*)
176 os=-hiuxwe2
177 ;;
178 -sco6)
179 os=-sco5v6
180 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
181 ;;
182 -sco5)
183 os=-sco3.2v5
184 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
185 ;;
186 -sco4)
187 os=-sco3.2v4
188 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
189 ;;
190 -sco3.2.[4-9]*)
191 os=`echo $os | sed -e 's/sco3.2./sco3.2v/'`
192 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
193 ;;
194 -sco3.2v[4-9]*)
195 # Don't forget version if it is 3.2v4 or newer.
196 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
197 ;;
198 -sco5v6*)
199 # Don't forget version if it is 3.2v4 or newer.
200 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
201 ;;
202 -sco*)
203 os=-sco3.2v2
204 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
205 ;;
206 -udk*)
207 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
208 ;;
209 -isc)
210 os=-isc2.2
211 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
212 ;;
213 -clix*)
214 basic_machine=clipper-intergraph
215 ;;
216 -isc*)
217 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
218 ;;
219 -lynx*178)
220 os=-lynxos178
221 ;;
222 -lynx*5)
223 os=-lynxos5
224 ;;
225 -lynx*)
226 os=-lynxos
227 ;;
228 -ptx*)
229 basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'`
230 ;;
231 -windowsnt*)
232 os=`echo $os | sed -e 's/windowsnt/winnt/'`
233 ;;
234 -psos*)
235 os=-psos
236 ;;
237 -mint | -mint[0-9]*)
238 basic_machine=m68k-atari
239 os=-mint
240 ;;
241 esac
242
243 # Decode aliases for certain CPU-COMPANY combinations.
641 # Decode 1-component or ad-hoc basic machines
244642 case $basic_machine in
245 # Recognize the basic CPU types without company name.
246 # Some are omitted here because they have special meanings below.
247 1750a | 580 \
248 | a29k \
249 | aarch64 | aarch64_be \
250 | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \
251 | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \
252 | am33_2.0 \
253 | arc | arceb \
254 | arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \
255 | avr | avr32 \
256 | ba \
257 | be32 | be64 \
258 | bfin \
259 | c4x | c8051 | clipper \
260 | d10v | d30v | dlx | dsp16xx \
261 | e2k | epiphany \
262 | fido | fr30 | frv | ft32 \
263 | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \
264 | hexagon \
265 | i370 | i860 | i960 | ia16 | ia64 \
266 | ip2k | iq2000 \
267 | k1om \
268 | le32 | le64 \
269 | lm32 \
270 | m32c | m32r | m32rle | m68000 | m68k | m88k \
271 | maxq | mb | microblaze | microblazeel | mcore | mep | metag \
272 | mips | mipsbe | mipseb | mipsel | mipsle \
273 | mips16 \
274 | mips64 | mips64el \
275 | mips64octeon | mips64octeonel \
276 | mips64orion | mips64orionel \
277 | mips64r5900 | mips64r5900el \
278 | mips64vr | mips64vrel \
279 | mips64vr4100 | mips64vr4100el \
280 | mips64vr4300 | mips64vr4300el \
281 | mips64vr5000 | mips64vr5000el \
282 | mips64vr5900 | mips64vr5900el \
283 | mipsisa32 | mipsisa32el \
284 | mipsisa32r2 | mipsisa32r2el \
285 | mipsisa32r6 | mipsisa32r6el \
286 | mipsisa64 | mipsisa64el \
287 | mipsisa64r2 | mipsisa64r2el \
288 | mipsisa64r6 | mipsisa64r6el \
289 | mipsisa64sb1 | mipsisa64sb1el \
290 | mipsisa64sr71k | mipsisa64sr71kel \
291 | mipsr5900 | mipsr5900el \
292 | mipstx39 | mipstx39el \
293 | mn10200 | mn10300 \
294 | moxie \
295 | mt \
296 | msp430 \
297 | nds32 | nds32le | nds32be \
298 | nios | nios2 | nios2eb | nios2el \
299 | ns16k | ns32k \
300 | open8 | or1k | or1knd | or32 \
301 | pdp10 | pdp11 | pj | pjl \
302 | powerpc | powerpc64 | powerpc64le | powerpcle \
303 | pru \
304 | pyramid \
305 | riscv32 | riscv64 \
306 | rl78 | rx \
307 | score \
308 | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[234]eb | sheb | shbe | shle | sh[1234]le | sh3ele \
309 | sh64 | sh64le \
310 | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \
311 | sparcv8 | sparcv9 | sparcv9b | sparcv9v \
312 | spu \
313 | tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \
314 | ubicom32 \
315 | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \
316 | visium \
317 | wasm32 \
318 | we32k \
319 | x86 | xc16x | xstormy16 | xtensa \
320 | z8k | z80)
321 basic_machine=$basic_machine-unknown
322 ;;
323 c54x)
324 basic_machine=tic54x-unknown
325 ;;
326 c55x)
327 basic_machine=tic55x-unknown
328 ;;
329 c6x)
330 basic_machine=tic6x-unknown
643 # Here we handle the default manufacturer of certain CPU types. It is in
644 # some cases the only manufacturer, in others, it is the most popular.
645 w89k)
646 cpu=hppa1.1
647 vendor=winbond
648 ;;
649 op50n)
650 cpu=hppa1.1
651 vendor=oki
652 ;;
653 op60c)
654 cpu=hppa1.1
655 vendor=oki
656 ;;
657 ibm*)
658 cpu=i370
659 vendor=ibm
660 ;;
661 orion105)
662 cpu=clipper
663 vendor=highlevel
664 ;;
665 mac | mpw | mac-mpw)
666 cpu=m68k
667 vendor=apple
668 ;;
669 pmac | pmac-mpw)
670 cpu=powerpc
671 vendor=apple
672 ;;
673
674 # Recognize the various machine names and aliases which stand
675 # for a CPU type and a company and sometimes even an OS.
676 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc)
677 cpu=m68000
678 vendor=att
679 ;;
680 3b*)
681 cpu=we32k
682 vendor=att
683 ;;
684 bluegene*)
685 cpu=powerpc
686 vendor=ibm
687 os=cnk
688 ;;
689 decsystem10* | dec10*)
690 cpu=pdp10
691 vendor=dec
692 os=tops10
693 ;;
694 decsystem20* | dec20*)
695 cpu=pdp10
696 vendor=dec
697 os=tops20
698 ;;
699 delta | 3300 | motorola-3300 | motorola-delta \
700 | 3300-motorola | delta-motorola)
701 cpu=m68k
702 vendor=motorola
703 ;;
704 dpx2*)
705 cpu=m68k
706 vendor=bull
707 os=sysv3
708 ;;
709 encore | umax | mmax)
710 cpu=ns32k
711 vendor=encore
712 ;;
713 elxsi)
714 cpu=elxsi
715 vendor=elxsi
716 os=${os:-bsd}
717 ;;
718 fx2800)
719 cpu=i860
720 vendor=alliant
721 ;;
722 genix)
723 cpu=ns32k
724 vendor=ns
725 ;;
726 h3050r* | hiux*)
727 cpu=hppa1.1
728 vendor=hitachi
729 os=hiuxwe2
730 ;;
731 hp3k9[0-9][0-9] | hp9[0-9][0-9])
732 cpu=hppa1.0
733 vendor=hp
734 ;;
735 hp9k2[0-9][0-9] | hp9k31[0-9])
736 cpu=m68000
737 vendor=hp
738 ;;
739 hp9k3[2-9][0-9])
740 cpu=m68k
741 vendor=hp
742 ;;
743 hp9k6[0-9][0-9] | hp6[0-9][0-9])
744 cpu=hppa1.0
745 vendor=hp
746 ;;
747 hp9k7[0-79][0-9] | hp7[0-79][0-9])
748 cpu=hppa1.1
749 vendor=hp
750 ;;
751 hp9k78[0-9] | hp78[0-9])
752 # FIXME: really hppa2.0-hp
753 cpu=hppa1.1
754 vendor=hp
755 ;;
756 hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893)
757 # FIXME: really hppa2.0-hp
758 cpu=hppa1.1
759 vendor=hp
760 ;;
761 hp9k8[0-9][13679] | hp8[0-9][13679])
762 cpu=hppa1.1
763 vendor=hp
764 ;;
765 hp9k8[0-9][0-9] | hp8[0-9][0-9])
766 cpu=hppa1.0
767 vendor=hp
768 ;;
769 i*86v32)
770 cpu=`echo "$1" | sed -e 's/86.*/86/'`
771 vendor=pc
772 os=sysv32
773 ;;
774 i*86v4*)
775 cpu=`echo "$1" | sed -e 's/86.*/86/'`
776 vendor=pc
777 os=sysv4
778 ;;
779 i*86v)
780 cpu=`echo "$1" | sed -e 's/86.*/86/'`
781 vendor=pc
782 os=sysv
783 ;;
784 i*86sol2)
785 cpu=`echo "$1" | sed -e 's/86.*/86/'`
786 vendor=pc
787 os=solaris2
788 ;;
789 j90 | j90-cray)
790 cpu=j90
791 vendor=cray
792 os=${os:-unicos}
793 ;;
794 iris | iris4d)
795 cpu=mips
796 vendor=sgi
797 case $os in
798 irix*)
799 ;;
800 *)
801 os=irix4
802 ;;
803 esac
804 ;;
805 miniframe)
806 cpu=m68000
807 vendor=convergent
808 ;;
809 *mint | mint[0-9]* | *MiNT | *MiNT[0-9]*)
810 cpu=m68k
811 vendor=atari
812 os=mint
813 ;;
814 news-3600 | risc-news)
815 cpu=mips
816 vendor=sony
817 os=newsos
818 ;;
819 next | m*-next)
820 cpu=m68k
821 vendor=next
822 case $os in
823 nextstep* )
824 ;;
825 ns2*)
826 os=nextstep2
827 ;;
828 *)
829 os=nextstep3
830 ;;
831 esac
832 ;;
833 np1)
834 cpu=np1
835 vendor=gould
836 ;;
837 op50n-* | op60c-*)
838 cpu=hppa1.1
839 vendor=oki
840 os=proelf
841 ;;
842 pa-hitachi)
843 cpu=hppa1.1
844 vendor=hitachi
845 os=hiuxwe2
846 ;;
847 pbd)
848 cpu=sparc
849 vendor=tti
850 ;;
851 pbb)
852 cpu=m68k
853 vendor=tti
854 ;;
855 pc532)
856 cpu=ns32k
857 vendor=pc532
858 ;;
859 pn)
860 cpu=pn
861 vendor=gould
862 ;;
863 power)
864 cpu=power
865 vendor=ibm
866 ;;
867 ps2)
868 cpu=i386
869 vendor=ibm
870 ;;
871 rm[46]00)
872 cpu=mips
873 vendor=siemens
874 ;;
875 rtpc | rtpc-*)
876 cpu=romp
877 vendor=ibm
878 ;;
879 sde)
880 cpu=mipsisa32
881 vendor=sde
882 os=${os:-elf}
883 ;;
884 simso-wrs)
885 cpu=sparclite
886 vendor=wrs
887 os=vxworks
888 ;;
889 tower | tower-32)
890 cpu=m68k
891 vendor=ncr
892 ;;
893 vpp*|vx|vx-*)
894 cpu=f301
895 vendor=fujitsu
896 ;;
897 w65)
898 cpu=w65
899 vendor=wdc
900 ;;
901 w89k-*)
902 cpu=hppa1.1
903 vendor=winbond
904 os=proelf
905 ;;
906 none)
907 cpu=none
908 vendor=none
331909 ;;
332910 leon|leon[3-9])
333 basic_machine=sparc-$basic_machine
334 ;;
335 m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | nvptx | picochip)
336 basic_machine=$basic_machine-unknown
337 os=-none
338 ;;
339 m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k)
340 ;;
341 ms1)
342 basic_machine=mt-unknown
343 ;;
344
345 strongarm | thumb | xscale)
346 basic_machine=arm-unknown
347 ;;
348 xgate)
349 basic_machine=$basic_machine-unknown
350 os=-none
351 ;;
352 xscaleeb)
353 basic_machine=armeb-unknown
354 ;;
355
356 xscaleel)
357 basic_machine=armel-unknown
358 ;;
359
911 cpu=sparc
912 vendor=$basic_machine
913 ;;
914 leon-*|leon[3-9]-*)
915 cpu=sparc
916 vendor=`echo "$basic_machine" | sed 's/-.*//'`
917 ;;
918
919 *-*)
920 IFS="-" read -r cpu vendor <<EOF
921 $basic_machine
922 EOF
923 ;;
360924 # We use `pc' rather than `unknown'
361925 # because (1) that's what they normally are, and
362926 # (2) the word "unknown" tends to confuse beginning users.
363927 i*86 | x86_64)
364 basic_machine=$basic_machine-pc
365 ;;
366 # Object if more than one company name word.
367 *-*-*)
368 echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
369 exit 1
370 ;;
371 # Recognize the basic CPU types with company name.
372 580-* \
373 | a29k-* \
374 | aarch64-* | aarch64_be-* \
375 | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \
376 | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \
377 | alphapca5[67]-* | alpha64pca5[67]-* | arc-* | arceb-* \
378 | arm-* | armbe-* | armle-* | armeb-* | armv*-* \
379 | avr-* | avr32-* \
380 | ba-* \
381 | be32-* | be64-* \
382 | bfin-* | bs2000-* \
383 | c[123]* | c30-* | [cjt]90-* | c4x-* \
384 | c8051-* | clipper-* | craynv-* | cydra-* \
385 | d10v-* | d30v-* | dlx-* \
386 | e2k-* | elxsi-* \
387 | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \
388 | h8300-* | h8500-* \
389 | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \
390 | hexagon-* \
391 | i*86-* | i860-* | i960-* | ia16-* | ia64-* \
392 | ip2k-* | iq2000-* \
393 | k1om-* \
394 | le32-* | le64-* \
395 | lm32-* \
396 | m32c-* | m32r-* | m32rle-* \
397 | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \
398 | m88110-* | m88k-* | maxq-* | mcore-* | metag-* \
399 | microblaze-* | microblazeel-* \
400 | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \
401 | mips16-* \
402 | mips64-* | mips64el-* \
403 | mips64octeon-* | mips64octeonel-* \
404 | mips64orion-* | mips64orionel-* \
405 | mips64r5900-* | mips64r5900el-* \
406 | mips64vr-* | mips64vrel-* \
407 | mips64vr4100-* | mips64vr4100el-* \
408 | mips64vr4300-* | mips64vr4300el-* \
409 | mips64vr5000-* | mips64vr5000el-* \
410 | mips64vr5900-* | mips64vr5900el-* \
411 | mipsisa32-* | mipsisa32el-* \
412 | mipsisa32r2-* | mipsisa32r2el-* \
413 | mipsisa32r6-* | mipsisa32r6el-* \
414 | mipsisa64-* | mipsisa64el-* \
415 | mipsisa64r2-* | mipsisa64r2el-* \
416 | mipsisa64r6-* | mipsisa64r6el-* \
417 | mipsisa64sb1-* | mipsisa64sb1el-* \
418 | mipsisa64sr71k-* | mipsisa64sr71kel-* \
419 | mipsr5900-* | mipsr5900el-* \
420 | mipstx39-* | mipstx39el-* \
421 | mmix-* \
422 | mt-* \
423 | msp430-* \
424 | nds32-* | nds32le-* | nds32be-* \
425 | nios-* | nios2-* | nios2eb-* | nios2el-* \
426 | none-* | np1-* | ns16k-* | ns32k-* \
427 | open8-* \
428 | or1k*-* \
429 | orion-* \
430 | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \
431 | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \
432 | pru-* \
433 | pyramid-* \
434 | riscv32-* | riscv64-* \
435 | rl78-* | romp-* | rs6000-* | rx-* \
436 | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \
437 | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \
438 | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \
439 | sparclite-* \
440 | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx*-* \
441 | tahoe-* \
442 | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \
443 | tile*-* \
444 | tron-* \
445 | ubicom32-* \
446 | v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \
447 | vax-* \
448 | visium-* \
449 | wasm32-* \
450 | we32k-* \
451 | x86-* | x86_64-* | xc16x-* | xps100-* \
452 | xstormy16-* | xtensa*-* \
453 | ymp-* \
454 | z8k-* | z80-*)
455 ;;
456 # Recognize the basic CPU types without company name, with glob match.
457 xtensa*)
458 basic_machine=$basic_machine-unknown
459 ;;
460 # Recognize the various machine names and aliases which stand
461 # for a CPU type and a company and sometimes even an OS.
462 386bsd)
463 basic_machine=i386-unknown
464 os=-bsd
465 ;;
466 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc)
467 basic_machine=m68000-att
468 ;;
469 3b*)
470 basic_machine=we32k-att
471 ;;
472 a29khif)
473 basic_machine=a29k-amd
474 os=-udi
475 ;;
476 abacus)
477 basic_machine=abacus-unknown
478 ;;
479 adobe68k)
480 basic_machine=m68010-adobe
481 os=-scout
482 ;;
483 alliant | fx80)
484 basic_machine=fx80-alliant
485 ;;
486 altos | altos3068)
487 basic_machine=m68k-altos
488 ;;
489 am29k)
490 basic_machine=a29k-none
491 os=-bsd
492 ;;
493 amd64)
494 basic_machine=x86_64-pc
495 ;;
928 cpu=$basic_machine
929 vendor=pc
930 ;;
931 # These rules are duplicated from below for sake of the special case above;
932 # i.e. things that normalized to x86 arches should also default to "pc"
933 pc98)
934 cpu=i386
935 vendor=pc
936 ;;
937 x64 | amd64)
938 cpu=x86_64
939 vendor=pc
940 ;;
941 # Recognize the basic CPU types without company name.
942 *)
943 cpu=$basic_machine
944 vendor=unknown
945 ;;
946 esac
947
948 unset -v basic_machine
949
950 # Decode basic machines in the full and proper CPU-Company form.
951 case $cpu-$vendor in
952 # Here we handle the default manufacturer of certain CPU types in cannonical form. It is in
953 # some cases the only manufacturer, in others, it is the most popular.
954 craynv-unknown)
955 vendor=cray
956 os=${os:-unicosmp}
957 ;;
958 c90-unknown | c90-cray)
959 vendor=cray
960 os=${os:-unicos}
961 ;;
962 fx80-unknown)
963 vendor=alliant
964 ;;
965 romp-unknown)
966 vendor=ibm
967 ;;
968 mmix-unknown)
969 vendor=knuth
970 ;;
971 microblaze-unknown | microblazeel-unknown)
972 vendor=xilinx
973 ;;
974 rs6000-unknown)
975 vendor=ibm
976 ;;
977 vax-unknown)
978 vendor=dec
979 ;;
980 pdp11-unknown)
981 vendor=dec
982 ;;
983 we32k-unknown)
984 vendor=att
985 ;;
986 cydra-unknown)
987 vendor=cydrome
988 ;;
989 i370-ibm*)
990 vendor=ibm
991 ;;
992 orion-unknown)
993 vendor=highlevel
994 ;;
995 xps-unknown | xps100-unknown)
996 cpu=xps100
997 vendor=honeywell
998 ;;
999
1000 # Here we normalize CPU types with a missing or matching vendor
1001 dpx20-unknown | dpx20-bull)
1002 cpu=rs6000
1003 vendor=bull
1004 os=${os:-bosx}
1005 ;;
1006
1007 # Here we normalize CPU types irrespective of the vendor
4961008 amd64-*)
497 basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'`
498 ;;
499 amdahl)
500 basic_machine=580-amdahl
501 os=-sysv
502 ;;
503 amiga | amiga-*)
504 basic_machine=m68k-unknown
505 ;;
506 amigaos | amigados)
507 basic_machine=m68k-unknown
508 os=-amigaos
509 ;;
510 amigaunix | amix)
511 basic_machine=m68k-unknown
512 os=-sysv4
513 ;;
514 apollo68)
515 basic_machine=m68k-apollo
516 os=-sysv
517 ;;
518 apollo68bsd)
519 basic_machine=m68k-apollo
520 os=-bsd
521 ;;
522 aros)
523 basic_machine=i386-pc
524 os=-aros
525 ;;
526 asmjs)
527 basic_machine=asmjs-unknown
528 ;;
529 aux)
530 basic_machine=m68k-apple
531 os=-aux
532 ;;
533 balance)
534 basic_machine=ns32k-sequent
535 os=-dynix
536 ;;
537 blackfin)
538 basic_machine=bfin-unknown
539 os=-linux
1009 cpu=x86_64
5401010 ;;
5411011 blackfin-*)
542 basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'`
543 os=-linux
1012 cpu=bfin
1013 os=linux
1014 ;;
1015 c54x-*)
1016 cpu=tic54x
1017 ;;
1018 c55x-*)
1019 cpu=tic55x
1020 ;;
1021 c6x-*)
1022 cpu=tic6x
1023 ;;
1024 e500v[12]-*)
1025 cpu=powerpc
1026 os=$os"spe"
1027 ;;
1028 mips3*-*)
1029 cpu=mips64
1030 ;;
1031 ms1-*)
1032 cpu=mt
1033 ;;
1034 m68knommu-*)
1035 cpu=m68k
1036 os=linux
1037 ;;
1038 m9s12z-* | m68hcs12z-* | hcs12z-* | s12z-*)
1039 cpu=s12z
1040 ;;
1041 openrisc-*)
1042 cpu=or32
1043 ;;
1044 parisc-*)
1045 cpu=hppa
1046 os=linux
1047 ;;
1048 pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*)
1049 cpu=i586
1050 ;;
1051 pentiumpro-* | p6-* | 6x86-* | athlon-* | athalon_*-*)
1052 cpu=i686
1053 ;;
1054 pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*)
1055 cpu=i686
1056 ;;
1057 pentium4-*)
1058 cpu=i786
1059 ;;
1060 pc98-*)
1061 cpu=i386
1062 ;;
1063 ppc-* | ppcbe-*)
1064 cpu=powerpc
1065 ;;
1066 ppcle-* | powerpclittle-*)
1067 cpu=powerpcle
1068 ;;
1069 ppc64-*)
1070 cpu=powerpc64
1071 ;;
1072 ppc64le-* | powerpc64little-*)
1073 cpu=powerpc64le
1074 ;;
1075 sb1-*)
1076 cpu=mipsisa64sb1
1077 ;;
1078 sb1el-*)
1079 cpu=mipsisa64sb1el
1080 ;;
1081 sh5e[lb]-*)
1082 cpu=`echo "$cpu" | sed 's/^\(sh.\)e\(.\)$/\1\2e/'`
1083 ;;
1084 spur-*)
1085 cpu=spur
1086 ;;
1087 strongarm-* | thumb-*)
1088 cpu=arm
1089 ;;
1090 tx39-*)
1091 cpu=mipstx39
1092 ;;
1093 tx39el-*)
1094 cpu=mipstx39el
1095 ;;
1096 x64-*)
1097 cpu=x86_64
1098 ;;
1099 xscale-* | xscalee[bl]-*)
1100 cpu=`echo "$cpu" | sed 's/^xscale/arm/'`
1101 ;;
1102
1103 # Recognize the cannonical CPU Types that limit and/or modify the
1104 # company names they are paired with.
1105 cr16-*)
1106 os=${os:-elf}
1107 ;;
1108 crisv32-* | etraxfs*-*)
1109 cpu=crisv32
1110 vendor=axis
1111 ;;
1112 cris-* | etrax*-*)
1113 cpu=cris
1114 vendor=axis
1115 ;;
1116 crx-*)
1117 os=${os:-elf}
1118 ;;
1119 neo-tandem)
1120 cpu=neo
1121 vendor=tandem
1122 ;;
1123 nse-tandem)
1124 cpu=nse
1125 vendor=tandem
1126 ;;
1127 nsr-tandem)
1128 cpu=nsr
1129 vendor=tandem
1130 ;;
1131 nsv-tandem)
1132 cpu=nsv
1133 vendor=tandem
1134 ;;
1135 nsx-tandem)
1136 cpu=nsx
1137 vendor=tandem
1138 ;;
1139 s390-*)
1140 cpu=s390
1141 vendor=ibm
1142 ;;
1143 s390x-*)
1144 cpu=s390x
1145 vendor=ibm
1146 ;;
1147 tile*-*)
1148 os=${os:-linux-gnu}
1149 ;;
1150
1151 *)
1152 # Recognize the cannonical CPU types that are allowed with any
1153 # company name.
1154 case $cpu in
1155 1750a | 580 \
1156 | a29k \
1157 | aarch64 | aarch64_be \
1158 | abacus \
1159 | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] \
1160 | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] \
1161 | alphapca5[67] | alpha64pca5[67] \
1162 | am33_2.0 \
1163 | arc | arceb \
1164 | arm | arm[lb]e | arme[lb] | armv* \
1165 | avr | avr32 \
1166 | asmjs \
1167 | ba \
1168 | be32 | be64 \
1169 | bfin | bs2000 \
1170 | c[123]* | c30 | [cjt]90 | c4x \
1171 | c8051 | clipper | craynv | csky | cydra \
1172 | d10v | d30v | dlx | dsp16xx \
1173 | e2k | elxsi | epiphany \
1174 | f30[01] | f700 | fido | fr30 | frv | ft32 | fx80 \
1175 | h8300 | h8500 \
1176 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \
1177 | hexagon \
1178 | i370 | i*86 | i860 | i960 | ia16 | ia64 \
1179 | ip2k | iq2000 \
1180 | k1om \
1181 | le32 | le64 \
1182 | lm32 \
1183 | m32c | m32r | m32rle \
1184 | m5200 | m68000 | m680[012346]0 | m68360 | m683?2 | m68k | v70 | w65 \
1185 | m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | nvptx | picochip \
1186 | m88110 | m88k | maxq | mb | mcore | mep | metag \
1187 | microblaze | microblazeel \
1188 | mips | mipsbe | mipseb | mipsel | mipsle \
1189 | mips16 \
1190 | mips64 | mips64el \
1191 | mips64octeon | mips64octeonel \
1192 | mips64orion | mips64orionel \
1193 | mips64r5900 | mips64r5900el \
1194 | mips64vr | mips64vrel \
1195 | mips64vr4100 | mips64vr4100el \
1196 | mips64vr4300 | mips64vr4300el \
1197 | mips64vr5000 | mips64vr5000el \
1198 | mips64vr5900 | mips64vr5900el \
1199 | mipsisa32 | mipsisa32el \
1200 | mipsisa32r2 | mipsisa32r2el \
1201 | mipsisa32r6 | mipsisa32r6el \
1202 | mipsisa64 | mipsisa64el \
1203 | mipsisa64r2 | mipsisa64r2el \
1204 | mipsisa64r6 | mipsisa64r6el \
1205 | mipsisa64sb1 | mipsisa64sb1el \
1206 | mipsisa64sr71k | mipsisa64sr71kel \
1207 | mipsr5900 | mipsr5900el \
1208 | mipstx39 | mipstx39el \
1209 | mmix \
1210 | mn10200 | mn10300 \
1211 | moxie \
1212 | mt \
1213 | msp430 \
1214 | nds32 | nds32le | nds32be \
1215 | nfp \
1216 | nios | nios2 | nios2eb | nios2el \
1217 | none | np1 | ns16k | ns32k \
1218 | open8 \
1219 | or1k* \
1220 | or32 \
1221 | orion \
1222 | pdp10 | pdp11 | pj | pjl | pn | power \
1223 | powerpc | powerpc64 | powerpc64le | powerpcle | powerpcspe \
1224 | pru \
1225 | pyramid \
1226 | riscv | riscv32 | riscv64 \
1227 | rl78 | romp | rs6000 | rx \
1228 | score \
1229 | sh | sh[1234] | sh[24]a | sh[24]ae[lb] | sh[23]e | she[lb] | sh[lb]e \
1230 | sh[1234]e[lb] | sh[12345][lb]e | sh[23]ele | sh64 | sh64le \
1231 | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet \
1232 | sparclite \
1233 | sparcv8 | sparcv9 | sparcv9b | sparcv9v | sv1 | sx* \
1234 | spu \
1235 | tahoe \
1236 | tic30 | tic4x | tic54x | tic55x | tic6x | tic80 \
1237 | tron \
1238 | ubicom32 \
1239 | v850 | v850e | v850e1 | v850es | v850e2 | v850e2v3 \
1240 | vax \
1241 | visium \
1242 | wasm32 \
1243 | we32k \
1244 | x86 | x86_64 | xc16x | xgate | xps100 \
1245 | xstormy16 | xtensa* \
1246 | ymp \
1247 | z8k | z80)
1248 ;;
1249
1250 *)
1251 echo Invalid configuration \`"$1"\': machine \`"$cpu-$vendor"\' not recognized 1>&2
1252 exit 1
1253 ;;
1254 esac
1255 ;;
1256 esac
1257
1258 # Here we canonicalize certain aliases for manufacturers.
1259 case $vendor in
1260 digital*)
1261 vendor=dec
1262 ;;
1263 commodore*)
1264 vendor=cbm
1265 ;;
1266 *)
1267 ;;
1268 esac
1269
1270 # Decode manufacturer-specific aliases for certain operating systems.
1271
1272 if [ x$os != x ]
1273 then
1274 case $os in
1275 # First match some system type aliases that might get confused
1276 # with valid system types.
1277 # solaris* is a basic system type, with this one exception.
1278 auroraux)
1279 os=auroraux
5441280 ;;
5451281 bluegene*)
546 basic_machine=powerpc-ibm
547 os=-cnk
548 ;;
549 c54x-*)
550 basic_machine=tic54x-`echo $basic_machine | sed 's/^[^-]*-//'`
551 ;;
552 c55x-*)
553 basic_machine=tic55x-`echo $basic_machine | sed 's/^[^-]*-//'`
554 ;;
555 c6x-*)
556 basic_machine=tic6x-`echo $basic_machine | sed 's/^[^-]*-//'`
557 ;;
558 c90)
559 basic_machine=c90-cray
560 os=-unicos
561 ;;
562 cegcc)
563 basic_machine=arm-unknown
564 os=-cegcc
565 ;;
566 convex-c1)
567 basic_machine=c1-convex
568 os=-bsd
569 ;;
570 convex-c2)
571 basic_machine=c2-convex
572 os=-bsd
573 ;;
574 convex-c32)
575 basic_machine=c32-convex
576 os=-bsd
577 ;;
578 convex-c34)
579 basic_machine=c34-convex
580 os=-bsd
581 ;;
582 convex-c38)
583 basic_machine=c38-convex
584 os=-bsd
585 ;;
586 cray | j90)
587 basic_machine=j90-cray
588 os=-unicos
589 ;;
590 craynv)
591 basic_machine=craynv-cray
592 os=-unicosmp
593 ;;
594 cr16 | cr16-*)
595 basic_machine=cr16-unknown
596 os=-elf
597 ;;
598 crds | unos)
599 basic_machine=m68k-crds
600 ;;
601 crisv32 | crisv32-* | etraxfs*)
602 basic_machine=crisv32-axis
603 ;;
604 cris | cris-* | etrax*)
605 basic_machine=cris-axis
606 ;;
607 crx)
608 basic_machine=crx-unknown
609 os=-elf
610 ;;
611 da30 | da30-*)
612 basic_machine=m68k-da30
613 ;;
614 decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn)
615 basic_machine=mips-dec
616 ;;
617 decsystem10* | dec10*)
618 basic_machine=pdp10-dec
619 os=-tops10
620 ;;
621 decsystem20* | dec20*)
622 basic_machine=pdp10-dec
623 os=-tops20
624 ;;
625 delta | 3300 | motorola-3300 | motorola-delta \
626 | 3300-motorola | delta-motorola)
627 basic_machine=m68k-motorola
628 ;;
629 delta88)
630 basic_machine=m88k-motorola
631 os=-sysv3
632 ;;
633 dicos)
634 basic_machine=i686-pc
635 os=-dicos
636 ;;
637 djgpp)
638 basic_machine=i586-pc
639 os=-msdosdjgpp
640 ;;
641 dpx20 | dpx20-*)
642 basic_machine=rs6000-bull
643 os=-bosx
644 ;;
645 dpx2* | dpx2*-bull)
646 basic_machine=m68k-bull
647 os=-sysv3
648 ;;
649 e500v[12])
650 basic_machine=powerpc-unknown
651 os=$os"spe"
652 ;;
653 e500v[12]-*)
654 basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`
655 os=$os"spe"
656 ;;
657 ebmon29k)
658 basic_machine=a29k-amd
659 os=-ebmon
660 ;;
661 elxsi)
662 basic_machine=elxsi-elxsi
663 os=-bsd
664 ;;
665 encore | umax | mmax)
666 basic_machine=ns32k-encore
667 ;;
668 es1800 | OSE68k | ose68k | ose | OSE)
669 basic_machine=m68k-ericsson
670 os=-ose
671 ;;
672 fx2800)
673 basic_machine=i860-alliant
674 ;;
675 genix)
676 basic_machine=ns32k-ns
677 ;;
678 gmicro)
679 basic_machine=tron-gmicro
680 os=-sysv
681 ;;
682 go32)
683 basic_machine=i386-pc
684 os=-go32
685 ;;
686 h3050r* | hiux*)
687 basic_machine=hppa1.1-hitachi
688 os=-hiuxwe2
689 ;;
690 h8300hms)
691 basic_machine=h8300-hitachi
692 os=-hms
693 ;;
694 h8300xray)
695 basic_machine=h8300-hitachi
696 os=-xray
697 ;;
698 h8500hms)
699 basic_machine=h8500-hitachi
700 os=-hms
701 ;;
702 harris)
703 basic_machine=m88k-harris
704 os=-sysv3
705 ;;
706 hp300-*)
707 basic_machine=m68k-hp
708 ;;
709 hp300bsd)
710 basic_machine=m68k-hp
711 os=-bsd
712 ;;
713 hp300hpux)
714 basic_machine=m68k-hp
715 os=-hpux
716 ;;
717 hp3k9[0-9][0-9] | hp9[0-9][0-9])
718 basic_machine=hppa1.0-hp
719 ;;
720 hp9k2[0-9][0-9] | hp9k31[0-9])
721 basic_machine=m68000-hp
722 ;;
723 hp9k3[2-9][0-9])
724 basic_machine=m68k-hp
725 ;;
726 hp9k6[0-9][0-9] | hp6[0-9][0-9])
727 basic_machine=hppa1.0-hp
728 ;;
729 hp9k7[0-79][0-9] | hp7[0-79][0-9])
730 basic_machine=hppa1.1-hp
731 ;;
732 hp9k78[0-9] | hp78[0-9])
733 # FIXME: really hppa2.0-hp
734 basic_machine=hppa1.1-hp
735 ;;
736 hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893)
737 # FIXME: really hppa2.0-hp
738 basic_machine=hppa1.1-hp
739 ;;
740 hp9k8[0-9][13679] | hp8[0-9][13679])
741 basic_machine=hppa1.1-hp
742 ;;
743 hp9k8[0-9][0-9] | hp8[0-9][0-9])
744 basic_machine=hppa1.0-hp
745 ;;
746 hppa-next)
747 os=-nextstep3
748 ;;
749 hppaosf)
750 basic_machine=hppa1.1-hp
751 os=-osf
752 ;;
753 hppro)
754 basic_machine=hppa1.1-hp
755 os=-proelf
756 ;;
757 i370-ibm* | ibm*)
758 basic_machine=i370-ibm
759 ;;
760 i*86v32)
761 basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
762 os=-sysv32
763 ;;
764 i*86v4*)
765 basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
766 os=-sysv4
767 ;;
768 i*86v)
769 basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
770 os=-sysv
771 ;;
772 i*86sol2)
773 basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
774 os=-solaris2
775 ;;
776 i386mach)
777 basic_machine=i386-mach
778 os=-mach
779 ;;
780 i386-vsta | vsta)
781 basic_machine=i386-unknown
782 os=-vsta
783 ;;
784 iris | iris4d)
785 basic_machine=mips-sgi
786 case $os in
787 -irix*)
1282 os=cnk
1283 ;;
1284 solaris1 | solaris1.*)
1285 os=`echo $os | sed -e 's|solaris1|sunos4|'`
1286 ;;
1287 solaris)
1288 os=solaris2
1289 ;;
1290 unixware*)
1291 os=sysv4.2uw
1292 ;;
1293 gnu/linux*)
1294 os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'`
1295 ;;
1296 # es1800 is here to avoid being matched by es* (a different OS)
1297 es1800*)
1298 os=ose
1299 ;;
1300 # Some version numbers need modification
1301 chorusos*)
1302 os=chorusos
1303 ;;
1304 isc)
1305 os=isc2.2
1306 ;;
1307 sco6)
1308 os=sco5v6
1309 ;;
1310 sco5)
1311 os=sco3.2v5
1312 ;;
1313 sco4)
1314 os=sco3.2v4
1315 ;;
1316 sco3.2.[4-9]*)
1317 os=`echo $os | sed -e 's/sco3.2./sco3.2v/'`
1318 ;;
1319 sco3.2v[4-9]* | sco5v6*)
1320 # Don't forget version if it is 3.2v4 or newer.
1321 ;;
1322 scout)
1323 # Don't match below
1324 ;;
1325 sco*)
1326 os=sco3.2v2
1327 ;;
1328 psos*)
1329 os=psos
1330 ;;
1331 # Now accept the basic system types.
1332 # The portable systems comes first.
1333 # Each alternative MUST end in a * to match a version number.
1334 # sysv* is not here because it comes later, after sysvr4.
1335 gnu* | bsd* | mach* | minix* | genix* | ultrix* | irix* \
1336 | *vms* | esix* | aix* | cnk* | sunos | sunos[34]*\
1337 | hpux* | unos* | osf* | luna* | dgux* | auroraux* | solaris* \
1338 | sym* | kopensolaris* | plan9* \
1339 | amigaos* | amigados* | msdos* | newsos* | unicos* | aof* \
1340 | aos* | aros* | cloudabi* | sortix* \
1341 | nindy* | vxsim* | vxworks* | ebmon* | hms* | mvs* \
1342 | clix* | riscos* | uniplus* | iris* | isc* | rtu* | xenix* \
1343 | knetbsd* | mirbsd* | netbsd* \
1344 | bitrig* | openbsd* | solidbsd* | libertybsd* \
1345 | ekkobsd* | kfreebsd* | freebsd* | riscix* | lynxos* \
1346 | bosx* | nextstep* | cxux* | aout* | elf* | oabi* \
1347 | ptx* | coff* | ecoff* | winnt* | domain* | vsta* \
1348 | udi* | eabi* | lites* | ieee* | go32* | aux* | hcos* \
1349 | chorusrdb* | cegcc* | glidix* \
1350 | cygwin* | msys* | pe* | moss* | proelf* | rtems* \
1351 | midipix* | mingw32* | mingw64* | linux-gnu* | linux-android* \
1352 | linux-newlib* | linux-musl* | linux-uclibc* \
1353 | uxpv* | beos* | mpeix* | udk* | moxiebox* \
1354 | interix* | uwin* | mks* | rhapsody* | darwin* \
1355 | openstep* | oskit* | conix* | pw32* | nonstopux* \
1356 | storm-chaos* | tops10* | tenex* | tops20* | its* \
1357 | os2* | vos* | palmos* | uclinux* | nucleus* \
1358 | morphos* | superux* | rtmk* | windiss* \
1359 | powermax* | dnix* | nx6 | nx7 | sei* | dragonfly* \
1360 | skyos* | haiku* | rdos* | toppers* | drops* | es* \
1361 | onefs* | tirtos* | phoenix* | fuchsia* | redox* | bme* \
1362 | midnightbsd*)
1363 # Remember, each alternative MUST END IN *, to match a version number.
1364 ;;
1365 qnx*)
1366 case $cpu in
1367 x86 | i*86)
7881368 ;;
7891369 *)
790 os=-irix4
1370 os=nto-$os
7911371 ;;
7921372 esac
7931373 ;;
794 isi68 | isi)
795 basic_machine=m68k-isi
796 os=-sysv
797 ;;
798 leon-*|leon[3-9]-*)
799 basic_machine=sparc-`echo $basic_machine | sed 's/-.*//'`
800 ;;
801 m68knommu)
802 basic_machine=m68k-unknown
803 os=-linux
804 ;;
805 m68knommu-*)
806 basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'`
807 os=-linux
808 ;;
809 m88k-omron*)
810 basic_machine=m88k-omron
811 ;;
812 magnum | m3230)
813 basic_machine=mips-mips
814 os=-sysv
815 ;;
816 merlin)
817 basic_machine=ns32k-utek
818 os=-sysv
819 ;;
820 microblaze*)
821 basic_machine=microblaze-xilinx
822 ;;
823 mingw64)
824 basic_machine=x86_64-pc
825 os=-mingw64
826 ;;
827 mingw32)
828 basic_machine=i686-pc
829 os=-mingw32
830 ;;
831 mingw32ce)
832 basic_machine=arm-unknown
833 os=-mingw32ce
834 ;;
835 miniframe)
836 basic_machine=m68000-convergent
837 ;;
838 *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*)
839 basic_machine=m68k-atari
840 os=-mint
841 ;;
842 mips3*-*)
843 basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`
844 ;;
845 mips3*)
846 basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown
847 ;;
848 monitor)
849 basic_machine=m68k-rom68k
850 os=-coff
851 ;;
852 morphos)
853 basic_machine=powerpc-unknown
854 os=-morphos
855 ;;
856 moxiebox)
857 basic_machine=moxie-unknown
858 os=-moxiebox
859 ;;
860 msdos)
861 basic_machine=i386-pc
862 os=-msdos
863 ;;
864 ms1-*)
865 basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'`
866 ;;
867 msys)
868 basic_machine=i686-pc
869 os=-msys
870 ;;
871 mvs)
872 basic_machine=i370-ibm
873 os=-mvs
874 ;;
875 nacl)
876 basic_machine=le32-unknown
877 os=-nacl
878 ;;
879 ncr3000)
880 basic_machine=i486-ncr
881 os=-sysv4
882 ;;
883 netbsd386)
884 basic_machine=i386-unknown
885 os=-netbsd
886 ;;
887 netwinder)
888 basic_machine=armv4l-rebel
889 os=-linux
890 ;;
891 news | news700 | news800 | news900)
892 basic_machine=m68k-sony
893 os=-newsos
894 ;;
895 news1000)
896 basic_machine=m68030-sony
897 os=-newsos
898 ;;
899 news-3600 | risc-news)
900 basic_machine=mips-sony
901 os=-newsos
902 ;;
903 necv70)
904 basic_machine=v70-nec
905 os=-sysv
906 ;;
907 next | m*-next )
908 basic_machine=m68k-next
909 case $os in
910 -nextstep* )
911 ;;
912 -ns2*)
913 os=-nextstep2
1374 hiux*)
1375 os=hiuxwe2
1376 ;;
1377 nto-qnx*)
1378 ;;
1379 nto*)
1380 os=`echo $os | sed -e 's|nto|nto-qnx|'`
1381 ;;
1382 sim | xray | os68k* | v88r* \
1383 | windows* | osx | abug | netware* | os9* \
1384 | macos* | mpw* | magic* | mmixware* | mon960* | lnews*)
1385 ;;
1386 linux-dietlibc)
1387 os=linux-dietlibc
1388 ;;
1389 linux*)
1390 os=`echo $os | sed -e 's|linux|linux-gnu|'`
1391 ;;
1392 lynx*178)
1393 os=lynxos178
1394 ;;
1395 lynx*5)
1396 os=lynxos5
1397 ;;
1398 lynx*)
1399 os=lynxos
1400 ;;
1401 mac*)
1402 os=`echo "$os" | sed -e 's|mac|macos|'`
1403 ;;
1404 opened*)
1405 os=openedition
1406 ;;
1407 os400*)
1408 os=os400
1409 ;;
1410 sunos5*)
1411 os=`echo "$os" | sed -e 's|sunos5|solaris2|'`
1412 ;;
1413 sunos6*)
1414 os=`echo "$os" | sed -e 's|sunos6|solaris3|'`
1415 ;;
1416 wince*)
1417 os=wince
1418 ;;
1419 utek*)
1420 os=bsd
1421 ;;
1422 dynix*)
1423 os=bsd
1424 ;;
1425 acis*)
1426 os=aos
1427 ;;
1428 atheos*)
1429 os=atheos
1430 ;;
1431 syllable*)
1432 os=syllable
1433 ;;
1434 386bsd)
1435 os=bsd
1436 ;;
1437 ctix* | uts*)
1438 os=sysv
1439 ;;
1440 nova*)
1441 os=rtmk-nova
1442 ;;
1443 ns2)
1444 os=nextstep2
1445 ;;
1446 nsk*)
1447 os=nsk
1448 ;;
1449 # Preserve the version number of sinix5.
1450 sinix5.*)
1451 os=`echo $os | sed -e 's|sinix|sysv|'`
1452 ;;
1453 sinix*)
1454 os=sysv4
1455 ;;
1456 tpf*)
1457 os=tpf
1458 ;;
1459 triton*)
1460 os=sysv3
1461 ;;
1462 oss*)
1463 os=sysv3
1464 ;;
1465 svr4*)
1466 os=sysv4
1467 ;;
1468 svr3)
1469 os=sysv3
1470 ;;
1471 sysvr4)
1472 os=sysv4
1473 ;;
1474 # This must come after sysvr4.
1475 sysv*)
1476 ;;
1477 ose*)
1478 os=ose
1479 ;;
1480 *mint | mint[0-9]* | *MiNT | MiNT[0-9]*)
1481 os=mint
1482 ;;
1483 zvmoe)
1484 os=zvmoe
1485 ;;
1486 dicos*)
1487 os=dicos
1488 ;;
1489 pikeos*)
1490 # Until real need of OS specific support for
1491 # particular features comes up, bare metal
1492 # configurations are quite functional.
1493 case $cpu in
1494 arm*)
1495 os=eabi
9141496 ;;
9151497 *)
916 os=-nextstep3
1498 os=elf
9171499 ;;
9181500 esac
9191501 ;;
920 nh3000)
921 basic_machine=m68k-harris
922 os=-cxux
923 ;;
924 nh[45]000)
925 basic_machine=m88k-harris
926 os=-cxux
927 ;;
928 nindy960)
929 basic_machine=i960-intel
930 os=-nindy
931 ;;
932 mon960)
933 basic_machine=i960-intel
934 os=-mon960
935 ;;
936 nonstopux)
937 basic_machine=mips-compaq
938 os=-nonstopux
939 ;;
940 np1)
941 basic_machine=np1-gould
942 ;;
943 neo-tandem)
944 basic_machine=neo-tandem
945 ;;
946 nse-tandem)
947 basic_machine=nse-tandem
948 ;;
949 nsr-tandem)
950 basic_machine=nsr-tandem
951 ;;
952 nsx-tandem)
953 basic_machine=nsx-tandem
954 ;;
955 op50n-* | op60c-*)
956 basic_machine=hppa1.1-oki
957 os=-proelf
958 ;;
959 openrisc | openrisc-*)
960 basic_machine=or32-unknown
961 ;;
962 os400)
963 basic_machine=powerpc-ibm
964 os=-os400
965 ;;
966 OSE68000 | ose68000)
967 basic_machine=m68000-ericsson
968 os=-ose
969 ;;
970 os68k)
971 basic_machine=m68k-none
972 os=-os68k
973 ;;
974 pa-hitachi)
975 basic_machine=hppa1.1-hitachi
976 os=-hiuxwe2
977 ;;
978 paragon)
979 basic_machine=i860-intel
980 os=-osf
981 ;;
982 parisc)
983 basic_machine=hppa-unknown
984 os=-linux
985 ;;
986 parisc-*)
987 basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'`
988 os=-linux
989 ;;
990 pbd)
991 basic_machine=sparc-tti
992 ;;
993 pbb)
994 basic_machine=m68k-tti
995 ;;
996 pc532 | pc532-*)
997 basic_machine=ns32k-pc532
998 ;;
999 pc98)
1000 basic_machine=i386-pc
1001 ;;
1002 pc98-*)
1003 basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'`
1004 ;;
1005 pentium | p5 | k5 | k6 | nexgen | viac3)
1006 basic_machine=i586-pc
1007 ;;
1008 pentiumpro | p6 | 6x86 | athlon | athlon_*)
1009 basic_machine=i686-pc
1010 ;;
1011 pentiumii | pentium2 | pentiumiii | pentium3)
1012 basic_machine=i686-pc
1013 ;;
1014 pentium4)
1015 basic_machine=i786-pc
1016 ;;
1017 pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*)
1018 basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'`
1019 ;;
1020 pentiumpro-* | p6-* | 6x86-* | athlon-*)
1021 basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
1022 ;;
1023 pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*)
1024 basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
1025 ;;
1026 pentium4-*)
1027 basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'`
1028 ;;
1029 pn)
1030 basic_machine=pn-gould
1031 ;;
1032 power) basic_machine=power-ibm
1033 ;;
1034 ppc | ppcbe) basic_machine=powerpc-unknown
1035 ;;
1036 ppc-* | ppcbe-*)
1037 basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`
1038 ;;
1039 ppcle | powerpclittle)
1040 basic_machine=powerpcle-unknown
1041 ;;
1042 ppcle-* | powerpclittle-*)
1043 basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'`
1044 ;;
1045 ppc64) basic_machine=powerpc64-unknown
1046 ;;
1047 ppc64-* | ppc64p7-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'`
1048 ;;
1049 ppc64le | powerpc64little)
1050 basic_machine=powerpc64le-unknown
1051 ;;
1052 ppc64le-* | powerpc64little-*)
1053 basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'`
1054 ;;
1055 ps2)
1056 basic_machine=i386-ibm
1057 ;;
1058 pw32)
1059 basic_machine=i586-unknown
1060 os=-pw32
1061 ;;
1062 rdos | rdos64)
1063 basic_machine=x86_64-pc
1064 os=-rdos
1065 ;;
1066 rdos32)
1067 basic_machine=i386-pc
1068 os=-rdos
1069 ;;
1070 rom68k)
1071 basic_machine=m68k-rom68k
1072 os=-coff
1073 ;;
1074 rm[46]00)
1075 basic_machine=mips-siemens
1076 ;;
1077 rtpc | rtpc-*)
1078 basic_machine=romp-ibm
1079 ;;
1080 s390 | s390-*)
1081 basic_machine=s390-ibm
1082 ;;
1083 s390x | s390x-*)
1084 basic_machine=s390x-ibm
1085 ;;
1086 sa29200)
1087 basic_machine=a29k-amd
1088 os=-udi
1089 ;;
1090 sb1)
1091 basic_machine=mipsisa64sb1-unknown
1092 ;;
1093 sb1el)
1094 basic_machine=mipsisa64sb1el-unknown
1095 ;;
1096 sde)
1097 basic_machine=mipsisa32-sde
1098 os=-elf
1099 ;;
1100 sei)
1101 basic_machine=mips-sei
1102 os=-seiux
1103 ;;
1104 sequent)
1105 basic_machine=i386-sequent
1106 ;;
1107 sh)
1108 basic_machine=sh-hitachi
1109 os=-hms
1110 ;;
1111 sh5el)
1112 basic_machine=sh5le-unknown
1113 ;;
1114 sh64)
1115 basic_machine=sh64-unknown
1116 ;;
1117 sparclite-wrs | simso-wrs)
1118 basic_machine=sparclite-wrs
1119 os=-vxworks
1120 ;;
1121 sps7)
1122 basic_machine=m68k-bull
1123 os=-sysv2
1124 ;;
1125 spur)
1126 basic_machine=spur-unknown
1127 ;;
1128 st2000)
1129 basic_machine=m68k-tandem
1130 ;;
1131 stratus)
1132 basic_machine=i860-stratus
1133 os=-sysv4
1134 ;;
1135 strongarm-* | thumb-*)
1136 basic_machine=arm-`echo $basic_machine | sed 's/^[^-]*-//'`
1137 ;;
1138 sun2)
1139 basic_machine=m68000-sun
1140 ;;
1141 sun2os3)
1142 basic_machine=m68000-sun
1143 os=-sunos3
1144 ;;
1145 sun2os4)
1146 basic_machine=m68000-sun
1147 os=-sunos4
1148 ;;
1149 sun3os3)
1150 basic_machine=m68k-sun
1151 os=-sunos3
1152 ;;
1153 sun3os4)
1154 basic_machine=m68k-sun
1155 os=-sunos4
1156 ;;
1157 sun4os3)
1158 basic_machine=sparc-sun
1159 os=-sunos3
1160 ;;
1161 sun4os4)
1162 basic_machine=sparc-sun
1163 os=-sunos4
1164 ;;
1165 sun4sol2)
1166 basic_machine=sparc-sun
1167 os=-solaris2
1168 ;;
1169 sun3 | sun3-*)
1170 basic_machine=m68k-sun
1171 ;;
1172 sun4)
1173 basic_machine=sparc-sun
1174 ;;
1175 sun386 | sun386i | roadrunner)
1176 basic_machine=i386-sun
1177 ;;
1178 sv1)
1179 basic_machine=sv1-cray
1180 os=-unicos
1181 ;;
1182 symmetry)
1183 basic_machine=i386-sequent
1184 os=-dynix
1185 ;;
1186 t3e)
1187 basic_machine=alphaev5-cray
1188 os=-unicos
1189 ;;
1190 t90)
1191 basic_machine=t90-cray
1192 os=-unicos
1193 ;;
1194 tile*)
1195 basic_machine=$basic_machine-unknown
1196 os=-linux-gnu
1197 ;;
1198 tx39)
1199 basic_machine=mipstx39-unknown
1200 ;;
1201 tx39el)
1202 basic_machine=mipstx39el-unknown
1203 ;;
1204 toad1)
1205 basic_machine=pdp10-xkl
1206 os=-tops20
1207 ;;
1208 tower | tower-32)
1209 basic_machine=m68k-ncr
1210 ;;
1211 tpf)
1212 basic_machine=s390x-ibm
1213 os=-tpf
1214 ;;
1215 udi29k)
1216 basic_machine=a29k-amd
1217 os=-udi
1218 ;;
1219 ultra3)
1220 basic_machine=a29k-nyu
1221 os=-sym1
1222 ;;
1223 v810 | necv810)
1224 basic_machine=v810-nec
1225 os=-none
1226 ;;
1227 vaxv)
1228 basic_machine=vax-dec
1229 os=-sysv
1230 ;;
1231 vms)
1232 basic_machine=vax-dec
1233 os=-vms
1234 ;;
1235 vpp*|vx|vx-*)
1236 basic_machine=f301-fujitsu
1237 ;;
1238 vxworks960)
1239 basic_machine=i960-wrs
1240 os=-vxworks
1241 ;;
1242 vxworks68)
1243 basic_machine=m68k-wrs
1244 os=-vxworks
1245 ;;
1246 vxworks29k)
1247 basic_machine=a29k-wrs
1248 os=-vxworks
1249 ;;
1250 wasm32)
1251 basic_machine=wasm32-unknown
1252 ;;
1253 w65*)
1254 basic_machine=w65-wdc
1255 os=-none
1256 ;;
1257 w89k-*)
1258 basic_machine=hppa1.1-winbond
1259 os=-proelf
1260 ;;
1261 xbox)
1262 basic_machine=i686-pc
1263 os=-mingw32
1264 ;;
1265 xps | xps100)
1266 basic_machine=xps100-honeywell
1267 ;;
1268 xscale-* | xscalee[bl]-*)
1269 basic_machine=`echo $basic_machine | sed 's/^xscale/arm/'`
1270 ;;
1271 ymp)
1272 basic_machine=ymp-cray
1273 os=-unicos
1274 ;;
1275 z8k-*-coff)
1276 basic_machine=z8k-unknown
1277 os=-sim
1278 ;;
1279 z80-*-coff)
1280 basic_machine=z80-unknown
1281 os=-sim
1502 nacl*)
1503 ;;
1504 ios)
12821505 ;;
12831506 none)
1284 basic_machine=none-none
1285 os=-none
1286 ;;
1287
1288 # Here we handle the default manufacturer of certain CPU types. It is in
1289 # some cases the only manufacturer, in others, it is the most popular.
1290 w89k)
1291 basic_machine=hppa1.1-winbond
1292 ;;
1293 op50n)
1294 basic_machine=hppa1.1-oki
1295 ;;
1296 op60c)
1297 basic_machine=hppa1.1-oki
1298 ;;
1299 romp)
1300 basic_machine=romp-ibm
1301 ;;
1302 mmix)
1303 basic_machine=mmix-knuth
1304 ;;
1305 rs6000)
1306 basic_machine=rs6000-ibm
1307 ;;
1308 vax)
1309 basic_machine=vax-dec
1310 ;;
1311 pdp10)
1312 # there are many clones, so DEC is not a safe bet
1313 basic_machine=pdp10-unknown
1314 ;;
1315 pdp11)
1316 basic_machine=pdp11-dec
1317 ;;
1318 we32k)
1319 basic_machine=we32k-att
1320 ;;
1321 sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele)
1322 basic_machine=sh-unknown
1323 ;;
1324 sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v)
1325 basic_machine=sparc-sun
1326 ;;
1327 cydra)
1328 basic_machine=cydra-cydrome
1329 ;;
1330 orion)
1331 basic_machine=orion-highlevel
1332 ;;
1333 orion105)
1334 basic_machine=clipper-highlevel
1335 ;;
1336 mac | mpw | mac-mpw)
1337 basic_machine=m68k-apple
1338 ;;
1339 pmac | pmac-mpw)
1340 basic_machine=powerpc-apple
1341 ;;
1342 *-unknown)
1343 # Make sure to match an already-canonicalized machine name.
1507 ;;
1508 *-eabi)
13441509 ;;
13451510 *)
1346 echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
1347 exit 1
1348 ;;
1349 esac
1350
1351 # Here we canonicalize certain aliases for manufacturers.
1352 case $basic_machine in
1353 *-digital*)
1354 basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'`
1355 ;;
1356 *-commodore*)
1357 basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'`
1358 ;;
1359 *)
1360 ;;
1361 esac
1362
1363 # Decode manufacturer-specific aliases for certain operating systems.
1364
1365 if [ x"$os" != x"" ]
1366 then
1367 case $os in
1368 # First match some system type aliases
1369 # that might get confused with valid system types.
1370 # -solaris* is a basic system type, with this one exception.
1371 -auroraux)
1372 os=-auroraux
1373 ;;
1374 -solaris1 | -solaris1.*)
1375 os=`echo $os | sed -e 's|solaris1|sunos4|'`
1376 ;;
1377 -solaris)
1378 os=-solaris2
1379 ;;
1380 -svr4*)
1381 os=-sysv4
1382 ;;
1383 -unixware*)
1384 os=-sysv4.2uw
1385 ;;
1386 -gnu/linux*)
1387 os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'`
1388 ;;
1389 # First accept the basic system types.
1390 # The portable systems comes first.
1391 # Each alternative MUST END IN A *, to match a version number.
1392 # -sysv* is not here because it comes later, after sysvr4.
1393 -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \
1394 | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\
1395 | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \
1396 | -sym* | -kopensolaris* | -plan9* \
1397 | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \
1398 | -aos* | -aros* | -cloudabi* | -sortix* \
1399 | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \
1400 | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \
1401 | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \
1402 | -bitrig* | -openbsd* | -solidbsd* | -libertybsd* \
1403 | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \
1404 | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \
1405 | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \
1406 | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \
1407 | -chorusos* | -chorusrdb* | -cegcc* | -glidix* \
1408 | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
1409 | -midipix* | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \
1410 | -linux-newlib* | -linux-musl* | -linux-uclibc* \
1411 | -uxpv* | -beos* | -mpeix* | -udk* | -moxiebox* \
1412 | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \
1413 | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \
1414 | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \
1415 | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \
1416 | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \
1417 | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \
1418 | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es* \
1419 | -onefs* | -tirtos* | -phoenix* | -fuchsia* | -redox*)
1420 # Remember, each alternative MUST END IN *, to match a version number.
1421 ;;
1422 -qnx*)
1423 case $basic_machine in
1424 x86-* | i*86-*)
1425 ;;
1426 *)
1427 os=-nto$os
1428 ;;
1429 esac
1430 ;;
1431 -nto-qnx*)
1432 ;;
1433 -nto*)
1434 os=`echo $os | sed -e 's|nto|nto-qnx|'`
1435 ;;
1436 -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \
1437 | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \
1438 | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*)
1439 ;;
1440 -mac*)
1441 os=`echo $os | sed -e 's|mac|macos|'`
1442 ;;
1443 -linux-dietlibc)
1444 os=-linux-dietlibc
1445 ;;
1446 -linux*)
1447 os=`echo $os | sed -e 's|linux|linux-gnu|'`
1448 ;;
1449 -sunos5*)
1450 os=`echo $os | sed -e 's|sunos5|solaris2|'`
1451 ;;
1452 -sunos6*)
1453 os=`echo $os | sed -e 's|sunos6|solaris3|'`
1454 ;;
1455 -opened*)
1456 os=-openedition
1457 ;;
1458 -os400*)
1459 os=-os400
1460 ;;
1461 -wince*)
1462 os=-wince
1463 ;;
1464 -osfrose*)
1465 os=-osfrose
1466 ;;
1467 -osf*)
1468 os=-osf
1469 ;;
1470 -utek*)
1471 os=-bsd
1472 ;;
1473 -dynix*)
1474 os=-bsd
1475 ;;
1476 -acis*)
1477 os=-aos
1478 ;;
1479 -atheos*)
1480 os=-atheos
1481 ;;
1482 -syllable*)
1483 os=-syllable
1484 ;;
1485 -386bsd)
1486 os=-bsd
1487 ;;
1488 -ctix* | -uts*)
1489 os=-sysv
1490 ;;
1491 -nova*)
1492 os=-rtmk-nova
1493 ;;
1494 -ns2 )
1495 os=-nextstep2
1496 ;;
1497 -nsk*)
1498 os=-nsk
1499 ;;
1500 # Preserve the version number of sinix5.
1501 -sinix5.*)
1502 os=`echo $os | sed -e 's|sinix|sysv|'`
1503 ;;
1504 -sinix*)
1505 os=-sysv4
1506 ;;
1507 -tpf*)
1508 os=-tpf
1509 ;;
1510 -triton*)
1511 os=-sysv3
1512 ;;
1513 -oss*)
1514 os=-sysv3
1515 ;;
1516 -svr4)
1517 os=-sysv4
1518 ;;
1519 -svr3)
1520 os=-sysv3
1521 ;;
1522 -sysvr4)
1523 os=-sysv4
1524 ;;
1525 # This must come after -sysvr4.
1526 -sysv*)
1527 ;;
1528 -ose*)
1529 os=-ose
1530 ;;
1531 -es1800*)
1532 os=-ose
1533 ;;
1534 -xenix)
1535 os=-xenix
1536 ;;
1537 -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*)
1538 os=-mint
1539 ;;
1540 -aros*)
1541 os=-aros
1542 ;;
1543 -zvmoe)
1544 os=-zvmoe
1545 ;;
1546 -dicos*)
1547 os=-dicos
1548 ;;
1549 -nacl*)
1550 ;;
1551 -ios)
1552 ;;
1553 -none)
1554 ;;
1555 *)
1556 # Get rid of the `-' at the beginning of $os.
1557 os=`echo $os | sed 's/[^-]*-//'`
1558 echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2
1511 echo Invalid configuration \`"$1"\': system \`"$os"\' not recognized 1>&2
15591512 exit 1
15601513 ;;
15611514 esac
15711524 # will signal an error saying that MANUFACTURER isn't an operating
15721525 # system, and we'll never get to this point.
15731526
1574 case $basic_machine in
1527 case $cpu-$vendor in
15751528 score-*)
1576 os=-elf
1529 os=elf
15771530 ;;
15781531 spu-*)
1579 os=-elf
1532 os=elf
15801533 ;;
15811534 *-acorn)
1582 os=-riscix1.2
1535 os=riscix1.2
15831536 ;;
15841537 arm*-rebel)
1585 os=-linux
1538 os=linux
15861539 ;;
15871540 arm*-semi)
1588 os=-aout
1541 os=aout
15891542 ;;
15901543 c4x-* | tic4x-*)
1591 os=-coff
1544 os=coff
15921545 ;;
15931546 c8051-*)
1594 os=-elf
1547 os=elf
1548 ;;
1549 clipper-intergraph)
1550 os=clix
15951551 ;;
15961552 hexagon-*)
1597 os=-elf
1553 os=elf
15981554 ;;
15991555 tic54x-*)
1600 os=-coff
1556 os=coff
16011557 ;;
16021558 tic55x-*)
1603 os=-coff
1559 os=coff
16041560 ;;
16051561 tic6x-*)
1606 os=-coff
1562 os=coff
16071563 ;;
16081564 # This must come before the *-dec entry.
16091565 pdp10-*)
1610 os=-tops20
1566 os=tops20
16111567 ;;
16121568 pdp11-*)
1613 os=-none
1569 os=none
16141570 ;;
16151571 *-dec | vax-*)
1616 os=-ultrix4.2
1572 os=ultrix4.2
16171573 ;;
16181574 m68*-apollo)
1619 os=-domain
1575 os=domain
16201576 ;;
16211577 i386-sun)
1622 os=-sunos4.0.2
1578 os=sunos4.0.2
16231579 ;;
16241580 m68000-sun)
1625 os=-sunos3
1581 os=sunos3
16261582 ;;
16271583 m68*-cisco)
1628 os=-aout
1584 os=aout
16291585 ;;
16301586 mep-*)
1631 os=-elf
1587 os=elf
16321588 ;;
16331589 mips*-cisco)
1634 os=-elf
1590 os=elf
16351591 ;;
16361592 mips*-*)
1637 os=-elf
1593 os=elf
16381594 ;;
16391595 or32-*)
1640 os=-coff
1596 os=coff
16411597 ;;
16421598 *-tti) # must be before sparc entry or we get the wrong os.
1643 os=-sysv3
1599 os=sysv3
16441600 ;;
16451601 sparc-* | *-sun)
1646 os=-sunos4.1.1
1602 os=sunos4.1.1
16471603 ;;
16481604 pru-*)
1649 os=-elf
1605 os=elf
16501606 ;;
16511607 *-be)
1652 os=-beos
1653 ;;
1654 *-haiku)
1655 os=-haiku
1608 os=beos
16561609 ;;
16571610 *-ibm)
1658 os=-aix
1611 os=aix
16591612 ;;
16601613 *-knuth)
1661 os=-mmixware
1614 os=mmixware
16621615 ;;
16631616 *-wec)
1664 os=-proelf
1617 os=proelf
16651618 ;;
16661619 *-winbond)
1667 os=-proelf
1620 os=proelf
16681621 ;;
16691622 *-oki)
1670 os=-proelf
1623 os=proelf
16711624 ;;
16721625 *-hp)
1673 os=-hpux
1626 os=hpux
16741627 ;;
16751628 *-hitachi)
1676 os=-hiux
1629 os=hiux
16771630 ;;
16781631 i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent)
1679 os=-sysv
1632 os=sysv
16801633 ;;
16811634 *-cbm)
1682 os=-amigaos
1635 os=amigaos
16831636 ;;
16841637 *-dg)
1685 os=-dgux
1638 os=dgux
16861639 ;;
16871640 *-dolphin)
1688 os=-sysv3
1641 os=sysv3
16891642 ;;
16901643 m68k-ccur)
1691 os=-rtu
1644 os=rtu
16921645 ;;
16931646 m88k-omron*)
1694 os=-luna
1695 ;;
1696 *-next )
1697 os=-nextstep
1647 os=luna
1648 ;;
1649 *-next)
1650 os=nextstep
16981651 ;;
16991652 *-sequent)
1700 os=-ptx
1653 os=ptx
17011654 ;;
17021655 *-crds)
1703 os=-unos
1656 os=unos
17041657 ;;
17051658 *-ns)
1706 os=-genix
1659 os=genix
17071660 ;;
17081661 i370-*)
1709 os=-mvs
1710 ;;
1711 *-next)
1712 os=-nextstep3
1662 os=mvs
17131663 ;;
17141664 *-gould)
1715 os=-sysv
1665 os=sysv
17161666 ;;
17171667 *-highlevel)
1718 os=-bsd
1668 os=bsd
17191669 ;;
17201670 *-encore)
1721 os=-bsd
1671 os=bsd
17221672 ;;
17231673 *-sgi)
1724 os=-irix
1674 os=irix
17251675 ;;
17261676 *-siemens)
1727 os=-sysv4
1677 os=sysv4
17281678 ;;
17291679 *-masscomp)
1730 os=-rtu
1680 os=rtu
17311681 ;;
17321682 f30[01]-fujitsu | f700-fujitsu)
1733 os=-uxpv
1683 os=uxpv
17341684 ;;
17351685 *-rom68k)
1736 os=-coff
1686 os=coff
17371687 ;;
17381688 *-*bug)
1739 os=-coff
1689 os=coff
17401690 ;;
17411691 *-apple)
1742 os=-macos
1692 os=macos
17431693 ;;
17441694 *-atari*)
1745 os=-mint
1695 os=mint
1696 ;;
1697 *-wrs)
1698 os=vxworks
17461699 ;;
17471700 *)
1748 os=-none
1701 os=none
17491702 ;;
17501703 esac
17511704 fi
17521705
17531706 # Here we handle the case where we know the os, and the CPU type, but not the
17541707 # manufacturer. We pick the logical manufacturer.
1755 vendor=unknown
1756 case $basic_machine in
1757 *-unknown)
1708 case $vendor in
1709 unknown)
17581710 case $os in
1759 -riscix*)
1711 riscix*)
17601712 vendor=acorn
17611713 ;;
1762 -sunos*)
1714 sunos*)
17631715 vendor=sun
17641716 ;;
1765 -cnk*|-aix*)
1717 cnk*|-aix*)
17661718 vendor=ibm
17671719 ;;
1768 -beos*)
1720 beos*)
17691721 vendor=be
17701722 ;;
1771 -hpux*)
1723 hpux*)
17721724 vendor=hp
17731725 ;;
1774 -mpeix*)
1726 mpeix*)
17751727 vendor=hp
17761728 ;;
1777 -hiux*)
1729 hiux*)
17781730 vendor=hitachi
17791731 ;;
1780 -unos*)
1732 unos*)
17811733 vendor=crds
17821734 ;;
1783 -dgux*)
1735 dgux*)
17841736 vendor=dg
17851737 ;;
1786 -luna*)
1738 luna*)
17871739 vendor=omron
17881740 ;;
1789 -genix*)
1741 genix*)
17901742 vendor=ns
17911743 ;;
1792 -mvs* | -opened*)
1744 clix*)
1745 vendor=intergraph
1746 ;;
1747 mvs* | opened*)
17931748 vendor=ibm
17941749 ;;
1795 -os400*)
1750 os400*)
17961751 vendor=ibm
17971752 ;;
1798 -ptx*)
1753 ptx*)
17991754 vendor=sequent
18001755 ;;
1801 -tpf*)
1756 tpf*)
18021757 vendor=ibm
18031758 ;;
1804 -vxsim* | -vxworks* | -windiss*)
1759 vxsim* | vxworks* | windiss*)
18051760 vendor=wrs
18061761 ;;
1807 -aux*)
1762 aux*)
18081763 vendor=apple
18091764 ;;
1810 -hms*)
1765 hms*)
18111766 vendor=hitachi
18121767 ;;
1813 -mpw* | -macos*)
1768 mpw* | macos*)
18141769 vendor=apple
18151770 ;;
1816 -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*)
1771 *mint | mint[0-9]* | *MiNT | MiNT[0-9]*)
18171772 vendor=atari
18181773 ;;
1819 -vos*)
1774 vos*)
18201775 vendor=stratus
18211776 ;;
18221777 esac
1823 basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"`
18241778 ;;
18251779 esac
18261780
1827 echo $basic_machine$os
1781 echo "$cpu-$vendor-$os"
18281782 exit
18291783
18301784 # Local variables:
1831 # eval: (add-hook 'write-file-hooks 'time-stamp)
1785 # eval: (add-hook 'before-save-hook 'time-stamp)
18321786 # time-stamp-start: "timestamp='"
18331787 # time-stamp-format: "%:y-%02m-%02d"
18341788 # time-stamp-end: "'"
0 #!/bin/sh
0 #! /bin/sh
11 # depcomp - compile a program generating dependencies as side-effects
22
3 scriptversion=2016-01-11.22; # UTC
4
5 # Copyright (C) 1999-2017 Free Software Foundation, Inc.
3 scriptversion=2018-03-07.03; # UTC
4
5 # Copyright (C) 1999-2018 Free Software Foundation, Inc.
66
77 # This program is free software; you can redistribute it and/or modify
88 # it under the terms of the GNU General Public License as published by
1515 # GNU General Public License for more details.
1616
1717 # You should have received a copy of the GNU General Public License
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18 # along with this program. If not, see <https://www.gnu.org/licenses/>.
1919
2020 # As a special exception to the GNU General Public License, if you
2121 # distribute this file as part of a program that contains a
782782 # Local Variables:
783783 # mode: shell-script
784784 # sh-indentation: 2
785 # eval: (add-hook 'write-file-hooks 'time-stamp)
785 # eval: (add-hook 'before-save-hook 'time-stamp)
786786 # time-stamp-start: "scriptversion="
787787 # time-stamp-format: "%:y-%02m-%02d.%02H"
788788 # time-stamp-time-zone: "UTC0"
00 #!/bin/sh
11 # install - install a program, script, or datafile
22
3 scriptversion=2016-01-11.22; # UTC
3 scriptversion=2018-03-11.20; # UTC
44
55 # This originates from X11R5 (mit/util/scripts/install.sh), which was
66 # later released in X11R6 (xc/config/util/install.sh) with the
270270 fi
271271 dst=$dst_arg
272272
273 # If destination is a directory, append the input filename; won't work
274 # if double slashes aren't ignored.
273 # If destination is a directory, append the input filename.
275274 if test -d "$dst"; then
276275 if test "$is_target_a_directory" = never; then
277276 echo "$0: $dst_arg: Is a directory" >&2
278277 exit 1
279278 fi
280279 dstdir=$dst
281 dst=$dstdir/`basename "$src"`
280 dstbase=`basename "$src"`
281 case $dst in
282 */) dst=$dst$dstbase;;
283 *) dst=$dst/$dstbase;;
284 esac
282285 dstdir_status=0
283286 else
284287 dstdir=`dirname "$dst"`
286289 dstdir_status=$?
287290 fi
288291 fi
292
293 case $dstdir in
294 */) dstdirslash=$dstdir;;
295 *) dstdirslash=$dstdir/;;
296 esac
289297
290298 obsolete_mkdir_used=false
291299
323331 # is incompatible with FreeBSD 'install' when (umask & 300) != 0.
324332 ;;
325333 *)
334 # Note that $RANDOM variable is not portable (e.g. dash); Use it
335 # here however when possible just to lower collision chance.
326336 tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$
327 trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0
328
337
338 trap 'ret=$?; rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir" 2>/dev/null; exit $ret' 0
339
340 # Because "mkdir -p" follows existing symlinks and we likely work
341 # directly in world-writeable /tmp, make sure that the '$tmpdir'
342 # directory is successfully created first before we actually test
343 # 'mkdir -p' feature.
329344 if (umask $mkdir_umask &&
330 exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1
345 $mkdirprog $mkdir_mode "$tmpdir" &&
346 exec $mkdirprog $mkdir_mode -p -- "$tmpdir/a/b") >/dev/null 2>&1
331347 then
332348 if test -z "$dir_arg" || {
333349 # Check for POSIX incompatibilities with -m.
334350 # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or
335351 # other-writable bit of parent directory when it shouldn't.
336352 # FreeBSD 6.1 mkdir -m -p sets mode of existing directory.
337 ls_ld_tmpdir=`ls -ld "$tmpdir"`
353 test_tmpdir="$tmpdir/a"
354 ls_ld_tmpdir=`ls -ld "$test_tmpdir"`
338355 case $ls_ld_tmpdir in
339356 d????-?r-*) different_mode=700;;
340357 d????-?--*) different_mode=755;;
341358 *) false;;
342359 esac &&
343 $mkdirprog -m$different_mode -p -- "$tmpdir" && {
344 ls_ld_tmpdir_1=`ls -ld "$tmpdir"`
360 $mkdirprog -m$different_mode -p -- "$test_tmpdir" && {
361 ls_ld_tmpdir_1=`ls -ld "$test_tmpdir"`
345362 test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1"
346363 }
347364 }
348365 then posix_mkdir=:
349366 fi
350 rmdir "$tmpdir/d" "$tmpdir"
367 rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir"
351368 else
352369 # Remove any dirs left behind by ancient mkdir implementations.
353 rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null
370 rmdir ./$mkdir_mode ./-p ./-- "$tmpdir" 2>/dev/null
354371 fi
355372 trap '' 0;;
356373 esac;;
426443 else
427444
428445 # Make a couple of temp file names in the proper directory.
429 dsttmp=$dstdir/_inst.$$_
430 rmtmp=$dstdir/_rm.$$_
446 dsttmp=${dstdirslash}_inst.$$_
447 rmtmp=${dstdirslash}_rm.$$_
431448
432449 # Trap to clean up those temp files at exit.
433450 trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0
492509 done
493510
494511 # Local variables:
495 # eval: (add-hook 'write-file-hooks 'time-stamp)
512 # eval: (add-hook 'before-save-hook 'time-stamp)
496513 # time-stamp-start: "scriptversion="
497514 # time-stamp-format: "%:y-%02m-%02d.%02H"
498515 # time-stamp-time-zone: "UTC0"
21232123 # a configuration failure hint, and exit.
21242124 func_fatal_configuration ()
21252125 {
2126 func__fatal_error ${1+"$@"} \
2126 func_fatal_error ${1+"$@"} \
21272127 "See the $PACKAGE documentation for more information." \
21282128 "Fatal configuration error."
21292129 }
0 #!/bin/sh
0 #! /bin/sh
11 # Common wrapper for a few potentially missing GNU programs.
22
3 scriptversion=2016-01-11.22; # UTC
4
5 # Copyright (C) 1996-2017 Free Software Foundation, Inc.
3 scriptversion=2018-03-07.03; # UTC
4
5 # Copyright (C) 1996-2018 Free Software Foundation, Inc.
66 # Originally written by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996.
77
88 # This program is free software; you can redistribute it and/or modify
1616 # GNU General Public License for more details.
1717
1818 # You should have received a copy of the GNU General Public License
19 # along with this program. If not, see <http://www.gnu.org/licenses/>.
19 # along with this program. If not, see <https://www.gnu.org/licenses/>.
2020
2121 # As a special exception to the GNU General Public License, if you
2222 # distribute this file as part of a program that contains a
100100 exit $st
101101 fi
102102
103 perl_URL=http://www.perl.org/
104 flex_URL=http://flex.sourceforge.net/
105 gnu_software_URL=http://www.gnu.org/software
103 perl_URL=https://www.perl.org/
104 flex_URL=https://github.com/westes/flex
105 gnu_software_URL=https://www.gnu.org/software
106106
107107 program_details ()
108108 {
206206 exit $st
207207
208208 # Local variables:
209 # eval: (add-hook 'write-file-hooks 'time-stamp)
209 # eval: (add-hook 'before-save-hook 'time-stamp)
210210 # time-stamp-start: "scriptversion="
211211 # time-stamp-format: "%:y-%02m-%02d.%02H"
212212 # time-stamp-time-zone: "UTC0"
0 #!/bin/sh
0 #! /bin/sh
11 # test-driver - basic testsuite driver script.
22
3 scriptversion=2016-01-11.22; # UTC
3 scriptversion=2018-03-07.03; # UTC
44
5 # Copyright (C) 2011-2017 Free Software Foundation, Inc.
5 # Copyright (C) 2011-2018 Free Software Foundation, Inc.
66 #
77 # This program is free software; you can redistribute it and/or modify
88 # it under the terms of the GNU General Public License as published by
1515 # GNU General Public License for more details.
1616 #
1717 # You should have received a copy of the GNU General Public License
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18 # along with this program. If not, see <https://www.gnu.org/licenses/>.
1919
2020 # As a special exception to the GNU General Public License, if you
2121 # distribute this file as part of a program that contains a
139139 # Local Variables:
140140 # mode: shell-script
141141 # sh-indentation: 2
142 # eval: (add-hook 'write-file-hooks 'time-stamp)
142 # eval: (add-hook 'before-save-hook 'time-stamp)
143143 # time-stamp-start: "scriptversion="
144144 # time-stamp-format: "%:y-%02m-%02d.%02H"
145145 # time-stamp-time-zone: "UTC0"
88 # define _FORTIFY_SOURCE 2
99 #endif
1010
11
12 /* GETTEXT package name */
13 #undef GETTEXT_PACKAGE
1411
1512 /* Define to 1 if you have the <dlfcn.h> header file. */
1613 #undef HAVE_DLFCN_H
00 #! /bin/sh
11 # Guess values for system-dependent variables and create Makefiles.
2 # Generated by GNU Autoconf 2.69 for libvirt-glib 2.0.0.
2 # Generated by GNU Autoconf 2.69 for libvirt-glib 3.0.0.
33 #
44 #
55 # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
586586 # Identity of this package.
587587 PACKAGE_NAME='libvirt-glib'
588588 PACKAGE_TARNAME='libvirt-glib'
589 PACKAGE_VERSION='2.0.0'
590 PACKAGE_STRING='libvirt-glib 2.0.0'
589 PACKAGE_VERSION='3.0.0'
590 PACKAGE_STRING='libvirt-glib 3.0.0'
591591 PACKAGE_BUGREPORT=''
592592 PACKAGE_URL=''
593593
628628 # include <unistd.h>
629629 #endif"
630630
631 enable_nls=yes
631632 ac_subst_vars='am__EXEEXT_FALSE
632633 am__EXEEXT_TRUE
633634 LTLIBOBJS
679680 GTKDOC_REBASE
680681 GTKDOC_CHECK_PATH
681682 GTKDOC_CHECK
682 ALL_LINGUAS
683 INTLTOOL_PERL
684 GMSGFMT
683 HAVE_GNU_GETTEXT_TOOLS_FALSE
684 HAVE_GNU_GETTEXT_TOOLS_TRUE
685 ENABLE_NLS_FALSE
686 ENABLE_NLS_TRUE
687 MSGMERGE
685688 MSGFMT
686 MSGMERGE
687689 XGETTEXT
688 INTLTOOL_POLICY_RULE
689 INTLTOOL_SERVICE_RULE
690 INTLTOOL_THEME_RULE
691 INTLTOOL_SCHEMAS_RULE
692 INTLTOOL_CAVES_RULE
693 INTLTOOL_XML_NOMERGE_RULE
694 INTLTOOL_XML_RULE
695 INTLTOOL_KBD_RULE
696 INTLTOOL_XAM_RULE
697 INTLTOOL_UI_RULE
698 INTLTOOL_SOUNDLIST_RULE
699 INTLTOOL_SHEET_RULE
700 INTLTOOL_SERVER_RULE
701 INTLTOOL_PONG_RULE
702 INTLTOOL_OAF_RULE
703 INTLTOOL_PROP_RULE
704 INTLTOOL_KEYS_RULE
705 INTLTOOL_DIRECTORY_RULE
706 INTLTOOL_DESKTOP_RULE
707 intltool__v_merge_options_0
708 intltool__v_merge_options_
709 INTLTOOL_V_MERGE_OPTIONS
710 INTLTOOL__v_MERGE_0
711 INTLTOOL__v_MERGE_
712 INTLTOOL_V_MERGE
713 INTLTOOL_EXTRACT
714 INTLTOOL_MERGE
715 INTLTOOL_UPDATE
716 USE_NLS
717 GETTEXT_PACKAGE
718690 LIBXML2_LIBS
719691 LIBXML2_CFLAGS
720692 GIO2_LIBS
763735 AMDEPBACKSLASH
764736 AMDEP_FALSE
765737 AMDEP_TRUE
766 am__quote
767738 am__include
768739 DEPDIR
769740 OBJEXT
779750 LIBVIRT_GLIB_MICRO_VERSION
780751 LIBVIRT_GLIB_MINOR_VERSION
781752 LIBVIRT_GLIB_MAJOR_VERSION
753 GLIB2_VERSION_SYMBOL
782754 GLIB2_REQUIRED
783755 LIBVIRT_REQUIRED
784756 host_os
853825 PACKAGE_TARNAME
854826 PACKAGE_NAME
855827 PATH_SEPARATOR
856 SHELL'
828 SHELL
829 am__quote'
857830 ac_subst_files=''
858831 ac_user_opts='
859832 enable_option_checking
14461419 # Omit some internal or obsolete options to make the list less imposing.
14471420 # This message is too long to be a string in the A/UX 3.1 sh.
14481421 cat <<_ACEOF
1449 \`configure' configures libvirt-glib 2.0.0 to adapt to many kinds of systems.
1422 \`configure' configures libvirt-glib 3.0.0 to adapt to many kinds of systems.
14501423
14511424 Usage: $0 [OPTION]... [VAR=VALUE]...
14521425
15161489
15171490 if test -n "$ac_init_help"; then
15181491 case $ac_init_help in
1519 short | recursive ) echo "Configuration of libvirt-glib 2.0.0:";;
1492 short | recursive ) echo "Configuration of libvirt-glib 3.0.0:";;
15201493 esac
15211494 cat <<\_ACEOF
15221495
15361509 optimize for fast installation [default=yes]
15371510 --disable-libtool-lock avoid locking (might break parallel builds)
15381511 --enable-werror Use -Werror (if supported)
1539 --disable-nls do not use Native Language Support
1512 --enable-nls NLS [default=yes]
15401513 --enable-gtk-doc use gtk-doc to build documentation [[default=no]]
15411514 --enable-gtk-doc-html build documentation in html format [[default=yes]]
15421515 --enable-gtk-doc-pdf build documentation in pdf format [[default=no]]
16701643 test -n "$ac_init_help" && exit $ac_status
16711644 if $ac_init_version; then
16721645 cat <<\_ACEOF
1673 libvirt-glib configure 2.0.0
1646 libvirt-glib configure 3.0.0
16741647 generated by GNU Autoconf 2.69
16751648
16761649 Copyright (C) 2012 Free Software Foundation, Inc.
19481921 This file contains any messages produced by compilers while
19491922 running configure, to aid debugging if configure makes a mistake.
19501923
1951 It was created by libvirt-glib $as_me 2.0.0, which was
1924 It was created by libvirt-glib $as_me 3.0.0, which was
19521925 generated by GNU Autoconf 2.69. Invocation command line was
19531926
19541927 $ $0 $@
23292302 ac_config_headers="$ac_config_headers config.h"
23302303
23312304
2332 am__api_version='1.15'
2305 am__api_version='1.16'
23332306
23342307 # Find a good install program. We prefer a C program (faster),
23352308 # so one script is as good as another. But avoid the broken or
28152788
28162789 # Define the identity of the package.
28172790 PACKAGE='libvirt-glib'
2818 VERSION='2.0.0'
2791 VERSION='3.0.0'
28192792
28202793
28212794 cat >>confdefs.h <<_ACEOF
28452818
28462819 # For better backward compatibility. To be removed once Automake 1.9.x
28472820 # dies out for good. For more background, see:
2848 # <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
2849 # <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
2821 # <https://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
2822 # <https://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
28502823 mkdir_p='$(MKDIR_P)'
28512824
28522825 # We need awk for the "check" target (and possibly the TAP driver). The
28972870 Aborting the configuration process, to ensure you take notice of the issue.
28982871
28992872 You can download and install GNU coreutils to get an 'rm' implementation
2900 that behaves properly: <http://www.gnu.org/software/coreutils/>.
2873 that behaves properly: <https://www.gnu.org/software/coreutils/>.
29012874
29022875 If you want to complete the configuration process using your problematic
29032876 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
30222995
30232996 LIBVIRT_REQUIRED=1.2.5
30242997 GLIB2_REQUIRED=2.38.0
2998 GLIB2_VERSION_SYMBOL="GLIB_VERSION_2_38"
30252999 GOBJECT_INTROSPECTION_REQUIRED=1.36.0
30263000 LIBXML2_REQUIRED=2.0.0
30273001
39273901
39283902 ac_config_commands="$ac_config_commands depfiles"
39293903
3930
3931 am_make=${MAKE-make}
3932 cat > confinc << 'END'
3904 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} supports the include directive" >&5
3905 $as_echo_n "checking whether ${MAKE-make} supports the include directive... " >&6; }
3906 cat > confinc.mk << 'END'
39333907 am__doit:
3934 @echo this is the am__doit target
3908 @echo this is the am__doit target >confinc.out
39353909 .PHONY: am__doit
39363910 END
3937 # If we don't find an include directive, just comment out the code.
3938 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5
3939 $as_echo_n "checking for style of include used by $am_make... " >&6; }
39403911 am__include="#"
39413912 am__quote=
3942 _am_result=none
3943 # First try GNU make style include.
3944 echo "include confinc" > confmf
3945 # Ignore all kinds of additional output from 'make'.
3946 case `$am_make -s -f confmf 2> /dev/null` in #(
3947 *the\ am__doit\ target*)
3948 am__include=include
3949 am__quote=
3950 _am_result=GNU
3951 ;;
3913 # BSD make does it like this.
3914 echo '.include "confinc.mk" # ignored' > confmf.BSD
3915 # Other make implementations (GNU, Solaris 10, AIX) do it like this.
3916 echo 'include confinc.mk # ignored' > confmf.GNU
3917 _am_result=no
3918 for s in GNU BSD; do
3919 { echo "$as_me:$LINENO: ${MAKE-make} -f confmf.$s && cat confinc.out" >&5
3920 (${MAKE-make} -f confmf.$s && cat confinc.out) >&5 2>&5
3921 ac_status=$?
3922 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3923 (exit $ac_status); }
3924 case $?:`cat confinc.out 2>/dev/null` in #(
3925 '0:this is the am__doit target') :
3926 case $s in #(
3927 BSD) :
3928 am__include='.include' am__quote='"' ;; #(
3929 *) :
3930 am__include='include' am__quote='' ;;
3931 esac ;; #(
3932 *) :
3933 ;;
39523934 esac
3953 # Now try BSD make style include.
3954 if test "$am__include" = "#"; then
3955 echo '.include "confinc"' > confmf
3956 case `$am_make -s -f confmf 2> /dev/null` in #(
3957 *the\ am__doit\ target*)
3958 am__include=.include
3959 am__quote="\""
3960 _am_result=BSD
3961 ;;
3962 esac
3963 fi
3964
3965
3966 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5
3967 $as_echo "$_am_result" >&6; }
3968 rm -f confinc confmf
3935 if test "$am__include" != "#"; then
3936 _am_result="yes ($s style)"
3937 break
3938 fi
3939 done
3940 rm -f confinc.* confmf.*
3941 { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${_am_result}" >&5
3942 $as_echo "${_am_result}" >&6; }
39693943
39703944 # Check whether --enable-dependency-tracking was given.
39713945 if test "${enable_dependency_tracking+set}" = set; then :
1385713831 fi
1385813832
1385913833
13860 GETTEXT_PACKAGE=libvirt-glib
13861
13862
13863 cat >>confdefs.h <<_ACEOF
13864 #define GETTEXT_PACKAGE "$GETTEXT_PACKAGE"
13865 _ACEOF
13866
13867
13868
13869 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether NLS is requested" >&5
13870 $as_echo_n "checking whether NLS is requested... " >&6; }
13871 # Check whether --enable-nls was given.
13834
13835 # Check whether --enable-nls was given.
1387213836 if test "${enable_nls+set}" = set; then :
13873 enableval=$enable_nls; USE_NLS=$enableval
13874 else
13875 USE_NLS=yes
13876 fi
13877
13878 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_NLS" >&5
13879 $as_echo "$USE_NLS" >&6; }
13880
13881
13882
13883
13884 case "$am__api_version" in
13885 1.01234)
13886 as_fn_error $? "Automake 1.5 or newer is required to use intltool" "$LINENO" 5
13887 ;;
13888 *)
13889 ;;
13890 esac
13891
13892 INTLTOOL_REQUIRED_VERSION_AS_INT=`echo 0.35.0 | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'`
13893 INTLTOOL_APPLIED_VERSION=`intltool-update --version | head -1 | cut -d" " -f3`
13894 INTLTOOL_APPLIED_VERSION_AS_INT=`echo $INTLTOOL_APPLIED_VERSION | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'`
13895 if test -n "0.35.0"; then
13896 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for intltool >= 0.35.0" >&5
13897 $as_echo_n "checking for intltool >= 0.35.0... " >&6; }
13898 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_APPLIED_VERSION found" >&5
13899 $as_echo "$INTLTOOL_APPLIED_VERSION found" >&6; }
13900 test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge "$INTLTOOL_REQUIRED_VERSION_AS_INT" ||
13901 as_fn_error $? "Your intltool is too old. You need intltool 0.35.0 or later." "$LINENO" 5
13902 fi
13903
13904 # Extract the first word of "intltool-update", so it can be a program name with args.
13905 set dummy intltool-update; ac_word=$2
13837 enableval=$enable_nls;
13838 fi
13839
13840
13841
13842 # Extract the first word of "xgettext", so it can be a program name with args.
13843 set dummy xgettext; ac_word=$2
1390613844 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
1390713845 $as_echo_n "checking for $ac_word... " >&6; }
13908 if ${ac_cv_path_INTLTOOL_UPDATE+:} false; then :
13846 if ${ac_cv_prog_XGETTEXT+:} false; then :
1390913847 $as_echo_n "(cached) " >&6
1391013848 else
13911 case $INTLTOOL_UPDATE in
13912 [\\/]* | ?:[\\/]*)
13913 ac_cv_path_INTLTOOL_UPDATE="$INTLTOOL_UPDATE" # Let the user override the test with a path.
13914 ;;
13915 *)
13916 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
13849 if test -n "$XGETTEXT"; then
13850 ac_cv_prog_XGETTEXT="$XGETTEXT" # Let the user override the test.
13851 else
13852 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1391713853 for as_dir in $PATH
1391813854 do
1391913855 IFS=$as_save_IFS
1392013856 test -z "$as_dir" && as_dir=.
1392113857 for ac_exec_ext in '' $ac_executable_extensions; do
1392213858 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
13923 ac_cv_path_INTLTOOL_UPDATE="$as_dir/$ac_word$ac_exec_ext"
13859 ac_cv_prog_XGETTEXT="xgettext"
1392413860 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
1392513861 break 2
1392613862 fi
1392813864 done
1392913865 IFS=$as_save_IFS
1393013866
13931 ;;
13932 esac
13933 fi
13934 INTLTOOL_UPDATE=$ac_cv_path_INTLTOOL_UPDATE
13935 if test -n "$INTLTOOL_UPDATE"; then
13936 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_UPDATE" >&5
13937 $as_echo "$INTLTOOL_UPDATE" >&6; }
13867 test -z "$ac_cv_prog_XGETTEXT" && ac_cv_prog_XGETTEXT="no"
13868 fi
13869 fi
13870 XGETTEXT=$ac_cv_prog_XGETTEXT
13871 if test -n "$XGETTEXT"; then
13872 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XGETTEXT" >&5
13873 $as_echo "$XGETTEXT" >&6; }
1393813874 else
1393913875 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
1394013876 $as_echo "no" >&6; }
1394113877 fi
1394213878
1394313879
13944 # Extract the first word of "intltool-merge", so it can be a program name with args.
13945 set dummy intltool-merge; ac_word=$2
13880 # Extract the first word of "msgfmt", so it can be a program name with args.
13881 set dummy msgfmt; ac_word=$2
1394613882 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
1394713883 $as_echo_n "checking for $ac_word... " >&6; }
13948 if ${ac_cv_path_INTLTOOL_MERGE+:} false; then :
13884 if ${ac_cv_prog_MSGFMT+:} false; then :
1394913885 $as_echo_n "(cached) " >&6
1395013886 else
13951 case $INTLTOOL_MERGE in
13952 [\\/]* | ?:[\\/]*)
13953 ac_cv_path_INTLTOOL_MERGE="$INTLTOOL_MERGE" # Let the user override the test with a path.
13954 ;;
13955 *)
13956 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
13887 if test -n "$MSGFMT"; then
13888 ac_cv_prog_MSGFMT="$MSGFMT" # Let the user override the test.
13889 else
13890 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1395713891 for as_dir in $PATH
1395813892 do
1395913893 IFS=$as_save_IFS
1396013894 test -z "$as_dir" && as_dir=.
1396113895 for ac_exec_ext in '' $ac_executable_extensions; do
1396213896 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
13963 ac_cv_path_INTLTOOL_MERGE="$as_dir/$ac_word$ac_exec_ext"
13897 ac_cv_prog_MSGFMT="msgfmt"
1396413898 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
1396513899 break 2
1396613900 fi
1396813902 done
1396913903 IFS=$as_save_IFS
1397013904
13971 ;;
13972 esac
13973 fi
13974 INTLTOOL_MERGE=$ac_cv_path_INTLTOOL_MERGE
13975 if test -n "$INTLTOOL_MERGE"; then
13976 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_MERGE" >&5
13977 $as_echo "$INTLTOOL_MERGE" >&6; }
13905 test -z "$ac_cv_prog_MSGFMT" && ac_cv_prog_MSGFMT="no"
13906 fi
13907 fi
13908 MSGFMT=$ac_cv_prog_MSGFMT
13909 if test -n "$MSGFMT"; then
13910 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGFMT" >&5
13911 $as_echo "$MSGFMT" >&6; }
1397813912 else
1397913913 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
1398013914 $as_echo "no" >&6; }
1398113915 fi
1398213916
1398313917
13984 # Extract the first word of "intltool-extract", so it can be a program name with args.
13985 set dummy intltool-extract; ac_word=$2
13918 # Extract the first word of "msgmerge", so it can be a program name with args.
13919 set dummy msgmerge; ac_word=$2
1398613920 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
1398713921 $as_echo_n "checking for $ac_word... " >&6; }
13988 if ${ac_cv_path_INTLTOOL_EXTRACT+:} false; then :
13922 if ${ac_cv_prog_MSGMERGE+:} false; then :
1398913923 $as_echo_n "(cached) " >&6
1399013924 else
13991 case $INTLTOOL_EXTRACT in
13992 [\\/]* | ?:[\\/]*)
13993 ac_cv_path_INTLTOOL_EXTRACT="$INTLTOOL_EXTRACT" # Let the user override the test with a path.
13994 ;;
13995 *)
13996 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
13925 if test -n "$MSGMERGE"; then
13926 ac_cv_prog_MSGMERGE="$MSGMERGE" # Let the user override the test.
13927 else
13928 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1399713929 for as_dir in $PATH
1399813930 do
1399913931 IFS=$as_save_IFS
1400013932 test -z "$as_dir" && as_dir=.
1400113933 for ac_exec_ext in '' $ac_executable_extensions; do
1400213934 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
14003 ac_cv_path_INTLTOOL_EXTRACT="$as_dir/$ac_word$ac_exec_ext"
13935 ac_cv_prog_MSGMERGE="msgmerge"
1400413936 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
1400513937 break 2
1400613938 fi
1400813940 done
1400913941 IFS=$as_save_IFS
1401013942
14011 ;;
14012 esac
14013 fi
14014 INTLTOOL_EXTRACT=$ac_cv_path_INTLTOOL_EXTRACT
14015 if test -n "$INTLTOOL_EXTRACT"; then
14016 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_EXTRACT" >&5
14017 $as_echo "$INTLTOOL_EXTRACT" >&6; }
14018 else
14019 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
14020 $as_echo "no" >&6; }
14021 fi
14022
14023
14024 if test -z "$INTLTOOL_UPDATE" -o -z "$INTLTOOL_MERGE" -o -z "$INTLTOOL_EXTRACT"; then
14025 as_fn_error $? "The intltool scripts were not found. Please install intltool." "$LINENO" 5
14026 fi
14027
14028 if test -z "$AM_DEFAULT_VERBOSITY"; then
14029 AM_DEFAULT_VERBOSITY=1
14030 fi
14031
14032
14033 INTLTOOL_V_MERGE='$(INTLTOOL__v_MERGE_$(V))'
14034 INTLTOOL__v_MERGE_='$(INTLTOOL__v_MERGE_$(AM_DEFAULT_VERBOSITY))'
14035 INTLTOOL__v_MERGE_0='@echo " ITMRG " $@;'
14036
14037
14038
14039
14040 INTLTOOL_V_MERGE_OPTIONS='$(intltool__v_merge_options_$(V))'
14041 intltool__v_merge_options_='$(intltool__v_merge_options_$(AM_DEFAULT_VERBOSITY))'
14042 intltool__v_merge_options_0='-q'
14043
14044
14045
14046
14047 INTLTOOL_DESKTOP_RULE='%.desktop: %.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
14048 INTLTOOL_DIRECTORY_RULE='%.directory: %.directory.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
14049 INTLTOOL_KEYS_RULE='%.keys: %.keys.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -k -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
14050 INTLTOOL_PROP_RULE='%.prop: %.prop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
14051 INTLTOOL_OAF_RULE='%.oaf: %.oaf.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -o -p $(top_srcdir)/po $< $@'
14052 INTLTOOL_PONG_RULE='%.pong: %.pong.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
14053 INTLTOOL_SERVER_RULE='%.server: %.server.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -o -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
14054 INTLTOOL_SHEET_RULE='%.sheet: %.sheet.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
14055 INTLTOOL_SOUNDLIST_RULE='%.soundlist: %.soundlist.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
14056 INTLTOOL_UI_RULE='%.ui: %.ui.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
14057 INTLTOOL_XML_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
14058 if test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge 5000; then
14059 INTLTOOL_XML_NOMERGE_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u --no-translations $< $@'
14060 else
14061 INTLTOOL_XML_NOMERGE_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) ; $(INTLTOOL_V_MERGE)_it_tmp_dir=tmp.intltool.$$RANDOM && mkdir $$_it_tmp_dir && LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u $$_it_tmp_dir $< $@ && rmdir $$_it_tmp_dir'
14062 fi
14063 INTLTOOL_XAM_RULE='%.xam: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
14064 INTLTOOL_KBD_RULE='%.kbd: %.kbd.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -m -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
14065 INTLTOOL_CAVES_RULE='%.caves: %.caves.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
14066 INTLTOOL_SCHEMAS_RULE='%.schemas: %.schemas.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -s -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
14067 INTLTOOL_THEME_RULE='%.theme: %.theme.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
14068 INTLTOOL_SERVICE_RULE='%.service: %.service.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
14069 INTLTOOL_POLICY_RULE='%.policy: %.policy.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
14070
14071
14072
14073
14074
14075
14076
14077
14078
14079
14080
14081
14082
14083
14084
14085
14086
14087
14088
14089
14090
14091
14092
14093
14094
14095
14096
14097
14098
14099
14100
14101
14102
14103
14104
14105
14106
14107
14108
14109
14110
14111
14112
14113
14114
14115
14116
14117
14118
14119
14120
14121
14122
14123
14124
14125
14126
14127
14128
14129
14130
14131
14132
14133
14134
14135
14136
14137
14138
14139
14140
14141
14142
14143
14144
14145
14146
14147
14148
14149
14150
14151
14152
14153
14154
14155
14156
14157
14158
14159
14160
14161
14162
14163
14164
14165
14166
14167 # Check the gettext tools to make sure they are GNU
14168 # Extract the first word of "xgettext", so it can be a program name with args.
14169 set dummy xgettext; ac_word=$2
14170 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
14171 $as_echo_n "checking for $ac_word... " >&6; }
14172 if ${ac_cv_path_XGETTEXT+:} false; then :
14173 $as_echo_n "(cached) " >&6
14174 else
14175 case $XGETTEXT in
14176 [\\/]* | ?:[\\/]*)
14177 ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path.
14178 ;;
14179 *)
14180 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
14181 for as_dir in $PATH
14182 do
14183 IFS=$as_save_IFS
14184 test -z "$as_dir" && as_dir=.
14185 for ac_exec_ext in '' $ac_executable_extensions; do
14186 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
14187 ac_cv_path_XGETTEXT="$as_dir/$ac_word$ac_exec_ext"
14188 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
14189 break 2
14190 fi
14191 done
14192 done
14193 IFS=$as_save_IFS
14194
14195 ;;
14196 esac
14197 fi
14198 XGETTEXT=$ac_cv_path_XGETTEXT
14199 if test -n "$XGETTEXT"; then
14200 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XGETTEXT" >&5
14201 $as_echo "$XGETTEXT" >&6; }
14202 else
14203 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
14204 $as_echo "no" >&6; }
14205 fi
14206
14207
14208 # Extract the first word of "msgmerge", so it can be a program name with args.
14209 set dummy msgmerge; ac_word=$2
14210 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
14211 $as_echo_n "checking for $ac_word... " >&6; }
14212 if ${ac_cv_path_MSGMERGE+:} false; then :
14213 $as_echo_n "(cached) " >&6
14214 else
14215 case $MSGMERGE in
14216 [\\/]* | ?:[\\/]*)
14217 ac_cv_path_MSGMERGE="$MSGMERGE" # Let the user override the test with a path.
14218 ;;
14219 *)
14220 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
14221 for as_dir in $PATH
14222 do
14223 IFS=$as_save_IFS
14224 test -z "$as_dir" && as_dir=.
14225 for ac_exec_ext in '' $ac_executable_extensions; do
14226 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
14227 ac_cv_path_MSGMERGE="$as_dir/$ac_word$ac_exec_ext"
14228 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
14229 break 2
14230 fi
14231 done
14232 done
14233 IFS=$as_save_IFS
14234
14235 ;;
14236 esac
14237 fi
14238 MSGMERGE=$ac_cv_path_MSGMERGE
13943 test -z "$ac_cv_prog_MSGMERGE" && ac_cv_prog_MSGMERGE="no"
13944 fi
13945 fi
13946 MSGMERGE=$ac_cv_prog_MSGMERGE
1423913947 if test -n "$MSGMERGE"; then
1424013948 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGMERGE" >&5
1424113949 $as_echo "$MSGMERGE" >&6; }
1424513953 fi
1424613954
1424713955
14248 # Extract the first word of "msgfmt", so it can be a program name with args.
14249 set dummy msgfmt; ac_word=$2
14250 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
14251 $as_echo_n "checking for $ac_word... " >&6; }
14252 if ${ac_cv_path_MSGFMT+:} false; then :
14253 $as_echo_n "(cached) " >&6
14254 else
14255 case $MSGFMT in
14256 [\\/]* | ?:[\\/]*)
14257 ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path.
14258 ;;
14259 *)
14260 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
14261 for as_dir in $PATH
14262 do
14263 IFS=$as_save_IFS
14264 test -z "$as_dir" && as_dir=.
14265 for ac_exec_ext in '' $ac_executable_extensions; do
14266 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
14267 ac_cv_path_MSGFMT="$as_dir/$ac_word$ac_exec_ext"
14268 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
14269 break 2
13956
13957 { $as_echo "$as_me:${as_lineno-$LINENO}: checking msgfmt is GNU tool" >&5
13958 $as_echo_n "checking msgfmt is GNU tool... " >&6; }
13959 if $MSGFMT --version >/dev/null 2>&1 && $MSGFMT --version | grep -q 'GNU gettext'; then
13960 msgfmt_is_gnu=yes
13961 else
13962 msgfmt_is_gnu=no
1427013963 fi
14271 done
14272 done
14273 IFS=$as_save_IFS
14274
14275 ;;
14276 esac
14277 fi
14278 MSGFMT=$ac_cv_path_MSGFMT
14279 if test -n "$MSGFMT"; then
14280 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGFMT" >&5
14281 $as_echo "$MSGFMT" >&6; }
14282 else
14283 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
14284 $as_echo "no" >&6; }
14285 fi
14286
14287
14288 # Extract the first word of "gmsgfmt", so it can be a program name with args.
14289 set dummy gmsgfmt; ac_word=$2
14290 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
14291 $as_echo_n "checking for $ac_word... " >&6; }
14292 if ${ac_cv_path_GMSGFMT+:} false; then :
14293 $as_echo_n "(cached) " >&6
14294 else
14295 case $GMSGFMT in
14296 [\\/]* | ?:[\\/]*)
14297 ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a path.
14298 ;;
14299 *)
14300 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
14301 for as_dir in $PATH
14302 do
14303 IFS=$as_save_IFS
14304 test -z "$as_dir" && as_dir=.
14305 for ac_exec_ext in '' $ac_executable_extensions; do
14306 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
14307 ac_cv_path_GMSGFMT="$as_dir/$ac_word$ac_exec_ext"
14308 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
14309 break 2
14310 fi
14311 done
14312 done
14313 IFS=$as_save_IFS
14314
14315 test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT"
14316 ;;
14317 esac
14318 fi
14319 GMSGFMT=$ac_cv_path_GMSGFMT
14320 if test -n "$GMSGFMT"; then
14321 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GMSGFMT" >&5
14322 $as_echo "$GMSGFMT" >&6; }
14323 else
14324 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
14325 $as_echo "no" >&6; }
14326 fi
14327
14328
14329 if test -z "$XGETTEXT" -o -z "$MSGMERGE" -o -z "$MSGFMT"; then
14330 as_fn_error $? "GNU gettext tools not found; required for intltool" "$LINENO" 5
14331 fi
14332 xgversion="`$XGETTEXT --version|grep '(GNU ' 2> /dev/null`"
14333 mmversion="`$MSGMERGE --version|grep '(GNU ' 2> /dev/null`"
14334 mfversion="`$MSGFMT --version|grep '(GNU ' 2> /dev/null`"
14335 if test -z "$xgversion" -o -z "$mmversion" -o -z "$mfversion"; then
14336 as_fn_error $? "GNU gettext tools not found; required for intltool" "$LINENO" 5
14337 fi
14338
14339 # Extract the first word of "perl", so it can be a program name with args.
14340 set dummy perl; ac_word=$2
14341 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
14342 $as_echo_n "checking for $ac_word... " >&6; }
14343 if ${ac_cv_path_INTLTOOL_PERL+:} false; then :
14344 $as_echo_n "(cached) " >&6
14345 else
14346 case $INTLTOOL_PERL in
14347 [\\/]* | ?:[\\/]*)
14348 ac_cv_path_INTLTOOL_PERL="$INTLTOOL_PERL" # Let the user override the test with a path.
14349 ;;
14350 *)
14351 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
14352 for as_dir in $PATH
14353 do
14354 IFS=$as_save_IFS
14355 test -z "$as_dir" && as_dir=.
14356 for ac_exec_ext in '' $ac_executable_extensions; do
14357 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
14358 ac_cv_path_INTLTOOL_PERL="$as_dir/$ac_word$ac_exec_ext"
14359 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
14360 break 2
14361 fi
14362 done
14363 done
14364 IFS=$as_save_IFS
14365
14366 ;;
14367 esac
14368 fi
14369 INTLTOOL_PERL=$ac_cv_path_INTLTOOL_PERL
14370 if test -n "$INTLTOOL_PERL"; then
14371 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_PERL" >&5
14372 $as_echo "$INTLTOOL_PERL" >&6; }
14373 else
14374 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
14375 $as_echo "no" >&6; }
14376 fi
14377
14378
14379 if test -z "$INTLTOOL_PERL"; then
14380 as_fn_error $? "perl not found" "$LINENO" 5
14381 fi
14382 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for perl >= 5.8.1" >&5
14383 $as_echo_n "checking for perl >= 5.8.1... " >&6; }
14384 $INTLTOOL_PERL -e "use 5.8.1;" > /dev/null 2>&1
14385 if test $? -ne 0; then
14386 as_fn_error $? "perl 5.8.1 is required for intltool" "$LINENO" 5
14387 else
14388 IT_PERL_VERSION=`$INTLTOOL_PERL -e "printf '%vd', $^V"`
14389 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $IT_PERL_VERSION" >&5
14390 $as_echo "$IT_PERL_VERSION" >&6; }
14391 fi
14392 if test "x" != "xno-xml"; then
14393 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XML::Parser" >&5
14394 $as_echo_n "checking for XML::Parser... " >&6; }
14395 if `$INTLTOOL_PERL -e "require XML::Parser" 2>/dev/null`; then
14396 { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5
14397 $as_echo "ok" >&6; }
14398 else
14399 as_fn_error $? "XML::Parser perl module is required for intltool" "$LINENO" 5
14400 fi
14401 fi
14402
14403 # Substitute ALL_LINGUAS so we can use it in po/Makefile
14404
14405
14406
13964 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $msgfmt_is_gnu" >&5
13965 $as_echo "$msgfmt_is_gnu" >&6; }
13966 if test "x$enable_nls" = "xyes"; then
13967 ENABLE_NLS_TRUE=
13968 ENABLE_NLS_FALSE='#'
13969 else
13970 ENABLE_NLS_TRUE='#'
13971 ENABLE_NLS_FALSE=
13972 fi
13973
13974 if test "x$XGETTEXT" != "xno" && test "x$MSGFMT" != "xno" && \
13975 test "x$MSGMERGE" != "xno" && test "x$msgfmt_is_gnu" != "xno"; then
13976 HAVE_GNU_GETTEXT_TOOLS_TRUE=
13977 HAVE_GNU_GETTEXT_TOOLS_FALSE='#'
13978 else
13979 HAVE_GNU_GETTEXT_TOOLS_TRUE='#'
13980 HAVE_GNU_GETTEXT_TOOLS_FALSE=
13981 fi
1440713982
1440813983
1440913984
1513414709 fi
1513514710
1513614711
15137 ac_config_files="$ac_config_files Makefile libvirt-glib/Makefile libvirt-gconfig/Makefile libvirt-gconfig/tests/Makefile libvirt-gobject/Makefile examples/Makefile vapi/Makefile docs/Makefile docs/libvirt-glib/Makefile docs/libvirt-glib/version.xml docs/libvirt-gobject/Makefile docs/libvirt-gconfig/Makefile po/Makefile.in tests/Makefile libvirt-glib-1.0.pc libvirt-gconfig-1.0.pc libvirt-gobject-1.0.pc libvirt-glib.spec mingw-libvirt-glib.spec"
14712 ac_config_files="$ac_config_files Makefile libvirt-glib/Makefile libvirt-gconfig/Makefile libvirt-gconfig/tests/Makefile libvirt-gobject/Makefile examples/Makefile vapi/Makefile docs/Makefile docs/libvirt-glib/Makefile docs/libvirt-glib/version.xml docs/libvirt-gobject/Makefile docs/libvirt-gconfig/Makefile po/Makefile tests/Makefile libvirt-glib-1.0.pc libvirt-gconfig-1.0.pc libvirt-gobject-1.0.pc libvirt-glib.spec mingw-libvirt-glib.spec"
1513814713
1513914714 cat >confcache <<\_ACEOF
1514014715 # This file is a shell script that caches the results of configure
1526914844 as_fn_error $? "conditional \"am__fastdepCC\" was never defined.
1527014845 Usually this means the macro was only invoked conditionally." "$LINENO" 5
1527114846 fi
15272
15273 ac_config_commands="$ac_config_commands po/stamp-it"
15274
15275
14847 if test -z "${ENABLE_NLS_TRUE}" && test -z "${ENABLE_NLS_FALSE}"; then
14848 as_fn_error $? "conditional \"ENABLE_NLS\" was never defined.
14849 Usually this means the macro was only invoked conditionally." "$LINENO" 5
14850 fi
14851 if test -z "${HAVE_GNU_GETTEXT_TOOLS_TRUE}" && test -z "${HAVE_GNU_GETTEXT_TOOLS_FALSE}"; then
14852 as_fn_error $? "conditional \"HAVE_GNU_GETTEXT_TOOLS\" was never defined.
14853 Usually this means the macro was only invoked conditionally." "$LINENO" 5
14854 fi
1527614855 if test -z "${HAVE_GTK_DOC_TRUE}" && test -z "${HAVE_GTK_DOC_FALSE}"; then
1527714856 as_fn_error $? "conditional \"HAVE_GTK_DOC\" was never defined.
1527814857 Usually this means the macro was only invoked conditionally." "$LINENO" 5
1571415293 # report actual input values of CONFIG_FILES etc. instead of their
1571515294 # values after options handling.
1571615295 ac_log="
15717 This file was extended by libvirt-glib $as_me 2.0.0, which was
15296 This file was extended by libvirt-glib $as_me 3.0.0, which was
1571815297 generated by GNU Autoconf 2.69. Invocation command line was
1571915298
1572015299 CONFIG_FILES = $CONFIG_FILES
1578415363 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
1578515364 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
1578615365 ac_cs_version="\\
15787 libvirt-glib config.status 2.0.0
15366 libvirt-glib config.status 3.0.0
1578815367 configured by $0, generated by GNU Autoconf 2.69,
1578915368 with options \\"\$ac_cs_config\\"
1579015369
1590315482 #
1590415483 # INIT-COMMANDS
1590515484 #
15906 AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"
15485 AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}"
1590715486
1590815487
1590915488 # The HP-UX ksh and POSIX shell print the target directory to stdout
1621515794 "docs/libvirt-glib/version.xml") CONFIG_FILES="$CONFIG_FILES docs/libvirt-glib/version.xml" ;;
1621615795 "docs/libvirt-gobject/Makefile") CONFIG_FILES="$CONFIG_FILES docs/libvirt-gobject/Makefile" ;;
1621715796 "docs/libvirt-gconfig/Makefile") CONFIG_FILES="$CONFIG_FILES docs/libvirt-gconfig/Makefile" ;;
16218 "po/Makefile.in") CONFIG_FILES="$CONFIG_FILES po/Makefile.in" ;;
15797 "po/Makefile") CONFIG_FILES="$CONFIG_FILES po/Makefile" ;;
1621915798 "tests/Makefile") CONFIG_FILES="$CONFIG_FILES tests/Makefile" ;;
1622015799 "libvirt-glib-1.0.pc") CONFIG_FILES="$CONFIG_FILES libvirt-glib-1.0.pc" ;;
1622115800 "libvirt-gconfig-1.0.pc") CONFIG_FILES="$CONFIG_FILES libvirt-gconfig-1.0.pc" ;;
1622215801 "libvirt-gobject-1.0.pc") CONFIG_FILES="$CONFIG_FILES libvirt-gobject-1.0.pc" ;;
1622315802 "libvirt-glib.spec") CONFIG_FILES="$CONFIG_FILES libvirt-glib.spec" ;;
1622415803 "mingw-libvirt-glib.spec") CONFIG_FILES="$CONFIG_FILES mingw-libvirt-glib.spec" ;;
16225 "po/stamp-it") CONFIG_COMMANDS="$CONFIG_COMMANDS po/stamp-it" ;;
1622615804
1622715805 *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
1622815806 esac
1685416432 # Older Autoconf quotes --file arguments for eval, but not when files
1685516433 # are listed without --file. Let's play safe and only enable the eval
1685616434 # if we detect the quoting.
16857 case $CONFIG_FILES in
16858 *\'*) eval set x "$CONFIG_FILES" ;;
16859 *) set x $CONFIG_FILES ;;
16860 esac
16435 # TODO: see whether this extra hack can be removed once we start
16436 # requiring Autoconf 2.70 or later.
16437 case $CONFIG_FILES in #(
16438 *\'*) :
16439 eval set x "$CONFIG_FILES" ;; #(
16440 *) :
16441 set x $CONFIG_FILES ;; #(
16442 *) :
16443 ;;
16444 esac
1686116445 shift
16862 for mf
16446 # Used to flag and report bootstrapping failures.
16447 am_rc=0
16448 for am_mf
1686316449 do
1686416450 # Strip MF so we end up with the name of the file.
16865 mf=`echo "$mf" | sed -e 's/:.*$//'`
16866 # Check whether this is an Automake generated Makefile or not.
16867 # We used to match only the files named 'Makefile.in', but
16868 # some people rename them; so instead we look at the file content.
16869 # Grep'ing the first line is not enough: some people post-process
16870 # each Makefile.in and add a new line on top of each file to say so.
16871 # Grep'ing the whole file is not good either: AIX grep has a line
16451 am_mf=`$as_echo "$am_mf" | sed -e 's/:.*$//'`
16452 # Check whether this is an Automake generated Makefile which includes
16453 # dependency-tracking related rules and includes.
16454 # Grep'ing the whole file directly is not great: AIX grep has a line
1687216455 # limit of 2048, but all sed's we know have understand at least 4000.
16873 if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
16874 dirpart=`$as_dirname -- "$mf" ||
16875 $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
16876 X"$mf" : 'X\(//\)[^/]' \| \
16877 X"$mf" : 'X\(//\)$' \| \
16878 X"$mf" : 'X\(/\)' \| . 2>/dev/null ||
16879 $as_echo X"$mf" |
16456 sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \
16457 || continue
16458 am_dirpart=`$as_dirname -- "$am_mf" ||
16459 $as_expr X"$am_mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
16460 X"$am_mf" : 'X\(//\)[^/]' \| \
16461 X"$am_mf" : 'X\(//\)$' \| \
16462 X"$am_mf" : 'X\(/\)' \| . 2>/dev/null ||
16463 $as_echo X"$am_mf" |
1688016464 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1688116465 s//\1/
1688216466 q
1689416478 q
1689516479 }
1689616480 s/.*/./; q'`
16897 else
16898 continue
16899 fi
16900 # Extract the definition of DEPDIR, am__include, and am__quote
16901 # from the Makefile without running 'make'.
16902 DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
16903 test -z "$DEPDIR" && continue
16904 am__include=`sed -n 's/^am__include = //p' < "$mf"`
16905 test -z "$am__include" && continue
16906 am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
16907 # Find all dependency output files, they are included files with
16908 # $(DEPDIR) in their names. We invoke sed twice because it is the
16909 # simplest approach to changing $(DEPDIR) to its actual value in the
16910 # expansion.
16911 for file in `sed -n "
16912 s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
16913 sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do
16914 # Make sure the directory exists.
16915 test -f "$dirpart/$file" && continue
16916 fdir=`$as_dirname -- "$file" ||
16917 $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
16918 X"$file" : 'X\(//\)[^/]' \| \
16919 X"$file" : 'X\(//\)$' \| \
16920 X"$file" : 'X\(/\)' \| . 2>/dev/null ||
16921 $as_echo X"$file" |
16922 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
16481 am_filepart=`$as_basename -- "$am_mf" ||
16482 $as_expr X/"$am_mf" : '.*/\([^/][^/]*\)/*$' \| \
16483 X"$am_mf" : 'X\(//\)$' \| \
16484 X"$am_mf" : 'X\(/\)' \| . 2>/dev/null ||
16485 $as_echo X/"$am_mf" |
16486 sed '/^.*\/\([^/][^/]*\)\/*$/{
1692316487 s//\1/
1692416488 q
1692516489 }
16926 /^X\(\/\/\)[^/].*/{
16490 /^X\/\(\/\/\)$/{
1692716491 s//\1/
1692816492 q
1692916493 }
16930 /^X\(\/\/\)$/{
16931 s//\1/
16932 q
16933 }
16934 /^X\(\/\).*/{
16494 /^X\/\(\/\).*/{
1693516495 s//\1/
1693616496 q
1693716497 }
1693816498 s/.*/./; q'`
16939 as_dir=$dirpart/$fdir; as_fn_mkdir_p
16940 # echo "creating $dirpart/$file"
16941 echo '# dummy' > "$dirpart/$file"
16942 done
16499 { echo "$as_me:$LINENO: cd "$am_dirpart" \
16500 && sed -e '/# am--include-marker/d' "$am_filepart" \
16501 | $MAKE -f - am--depfiles" >&5
16502 (cd "$am_dirpart" \
16503 && sed -e '/# am--include-marker/d' "$am_filepart" \
16504 | $MAKE -f - am--depfiles) >&5 2>&5
16505 ac_status=$?
16506 echo "$as_me:$LINENO: \$? = $ac_status" >&5
16507 (exit $ac_status); } || am_rc=$?
1694316508 done
16509 if test $am_rc -ne 0; then
16510 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
16511 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
16512 as_fn_error $? "Something went wrong bootstrapping makefile fragments
16513 for automatic dependency tracking. Try re-running configure with the
16514 '--disable-dependency-tracking' option to at least be able to build
16515 the package (albeit without support for automatic dependency tracking).
16516 See \`config.log' for more details" "$LINENO" 5; }
16517 fi
16518 { am_dirpart=; unset am_dirpart;}
16519 { am_filepart=; unset am_filepart;}
16520 { am_mf=; unset am_mf;}
16521 { am_rc=; unset am_rc;}
16522 rm -f conftest-deps.mk
1694416523 }
1694516524 ;;
1694616525 "libtool":C)
1748917068 chmod +x "$ofile"
1749017069
1749117070 ;;
17492 "po/stamp-it":C)
17493 if ! grep "^# INTLTOOL_MAKEFILE$" "po/Makefile.in" > /dev/null ; then
17494 as_fn_error $? "po/Makefile.in.in was not created by intltoolize." "$LINENO" 5
17495 fi
17496 rm -f "po/stamp-it" "po/stamp-it.tmp" "po/POTFILES" "po/Makefile.tmp"
17497 >"po/stamp-it.tmp"
17498 sed '/^#/d
17499 s/^[[].*] *//
17500 /^[ ]*$/d
17501 '"s|^| $ac_top_srcdir/|" \
17502 "$srcdir/po/POTFILES.in" | sed '$!s/$/ \\/' >"po/POTFILES"
17503
17504 sed '/^POTFILES =/,/[^\\]$/ {
17505 /^POTFILES =/!d
17506 r po/POTFILES
17507 }
17508 ' "po/Makefile.in" >"po/Makefile"
17509 rm -f "po/Makefile.tmp"
17510 mv "po/stamp-it.tmp" "po/stamp-it"
17511 ;;
1751217071
1751317072 esac
1751417073 done # for ac_tag
0 AC_INIT(libvirt-glib, 2.0.0)
0 AC_INIT(libvirt-glib, 3.0.0)
11 AC_CONFIG_SRCDIR(libvirt-glib/libvirt-glib-main.c)
22 AC_CONFIG_AUX_DIR([build-aux])
33 AC_CONFIG_HEADERS([config.h])
1212 AC_SUBST([LIBVIRT_REQUIRED]) dnl used in the .spec file
1313 GLIB2_REQUIRED=2.38.0
1414 AC_SUBST([GLIB2_REQUIRED]) dnl used in the .spec file
15 GLIB2_VERSION_SYMBOL="GLIB_VERSION_2_38"
16 AC_SUBST([GLIB2_VERSION_SYMBOL]) dnl sets glib deprecations
1517 GOBJECT_INTROSPECTION_REQUIRED=1.36.0
1618 LIBXML2_REQUIRED=2.0.0
1719
111113 PKG_CHECK_MODULES(GIO2, gio-2.0 >= $GLIB2_REQUIRED)
112114 PKG_CHECK_MODULES(LIBXML2, libxml-2.0 >= $LIBXML2_REQUIRED)
113115
114 LIBVIRT_GLIB_GETTEXT
115 dnl Should be in m4/virt-gettext.m4 but intltoolize is too
116 dnl dumb to find it there
117 IT_PROG_INTLTOOL([0.35.0])
116 LIBVIRT_GLIB_ARG_NLS
117 LIBVIRT_GLIB_CHECK_NLS
118118
119119
120120 GTK_DOC_CHECK([1.10],[--flavour no-tmpl])
217217 docs/libvirt-glib/version.xml
218218 docs/libvirt-gobject/Makefile
219219 docs/libvirt-gconfig/Makefile
220 po/Makefile.in
220 po/Makefile
221221 tests/Makefile
222222 libvirt-glib-1.0.pc
223223 libvirt-gconfig-1.0.pc
0 # Makefile.in generated by automake 1.15.1 from Makefile.am.
0 # Makefile.in generated by automake 1.16.1 from Makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
8989 subdir = docs
9090 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
9191 am__aclocal_m4_deps = $(top_srcdir)/m4/glibtests.m4 \
92 $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
93 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
94 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
95 $(top_srcdir)/m4/manywarnings.m4 \
92 $(top_srcdir)/m4/gtk-doc.m4 $(top_srcdir)/m4/introspection.m4 \
93 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
94 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
95 $(top_srcdir)/m4/lt~obsolete.m4 \
96 $(top_srcdir)/m4/manywarnings.m4 $(top_srcdir)/m4/pkg.m4 \
9697 $(top_srcdir)/m4/virt-compile-warnings.m4 \
97 $(top_srcdir)/m4/virt-gettext.m4 $(top_srcdir)/m4/warnings.m4 \
98 $(top_srcdir)/m4/virt-nls.m4 $(top_srcdir)/m4/warnings.m4 \
9899 $(top_srcdir)/configure.ac
99100 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
100101 $(ACLOCAL_M4)
137138 $(RECURSIVE_CLEAN_TARGETS) \
138139 $(am__extra_recursive_targets)
139140 AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
140 distdir
141 distdir distdir-am
141142 am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
142143 # Read a list of newline-separated strings from the standard input,
143144 # and print each of them once, without duplicates. Input order is
186187 done; \
187188 reldir="$$dir2"
188189 ACLOCAL = @ACLOCAL@
189 ALL_LINGUAS = @ALL_LINGUAS@
190190 AMTAR = @AMTAR@
191191 AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
192192 AR = @AR@
217217 EGREP = @EGREP@
218218 EXEEXT = @EXEEXT@
219219 FGREP = @FGREP@
220 GETTEXT_PACKAGE = @GETTEXT_PACKAGE@
221220 GIO2_CFLAGS = @GIO2_CFLAGS@
222221 GIO2_LIBS = @GIO2_LIBS@
223222 GLIB2_CFLAGS = @GLIB2_CFLAGS@
224223 GLIB2_LIBS = @GLIB2_LIBS@
225224 GLIB2_REQUIRED = @GLIB2_REQUIRED@
225 GLIB2_VERSION_SYMBOL = @GLIB2_VERSION_SYMBOL@
226226 GLIB_MKENUMS = @GLIB_MKENUMS@
227 GMSGFMT = @GMSGFMT@
228227 GOBJECT2_CFLAGS = @GOBJECT2_CFLAGS@
229228 GOBJECT2_LIBS = @GOBJECT2_LIBS@
230229 GREP = @GREP@
242241 INSTALL_PROGRAM = @INSTALL_PROGRAM@
243242 INSTALL_SCRIPT = @INSTALL_SCRIPT@
244243 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
245 INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
246 INTLTOOL_MERGE = @INTLTOOL_MERGE@
247 INTLTOOL_PERL = @INTLTOOL_PERL@
248 INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
249 INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@
250 INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@
251 INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@
252 INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@
253244 INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@
254245 INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@
255246 INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@
307298 SET_MAKE = @SET_MAKE@
308299 SHELL = @SHELL@
309300 STRIP = @STRIP@
310 USE_NLS = @USE_NLS@
311301 VAPIGEN = @VAPIGEN@
312302 VERSION = @VERSION@
313303 WARN_CFLAGS = @WARN_CFLAGS@
347337 install_sh = @install_sh@
348338 installed_test_metadir = @installed_test_metadir@
349339 installed_testdir = @installed_testdir@
350 intltool__v_merge_options_ = @intltool__v_merge_options_@
351 intltool__v_merge_options_0 = @intltool__v_merge_options_0@
352340 libdir = @libdir@
353341 libexecdir = @libexecdir@
354342 localedir = @localedir@
389377 *config.status*) \
390378 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
391379 *) \
392 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
393 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
380 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
381 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
394382 esac;
395383
396384 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
507495 distclean-tags:
508496 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
509497
510 distdir: $(DISTFILES)
498 distdir: $(BUILT_SOURCES)
499 $(MAKE) $(AM_MAKEFLAGS) distdir-am
500
501 distdir-am: $(DISTFILES)
511502 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
512503 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
513504 list='$(DISTFILES)'; \
330330 </SECTION>
331331
332332 <SECTION>
333 <FILE>libvirt-gconfig-domain-capabilities</FILE>
334 <TITLE>GVirConfigDomainCapabilities</TITLE>
335 GVirConfigDomainCapabilities
336 GVirConfigDomainCapabilitiesClass
337 gvir_config_domain_capabilities_new
338 gvir_config_domain_capabilities_new_from_xml
339 gvir_config_domain_capabilities_get_os
340 GVirConfigDomainCapabilitiesPrivate
341 <SUBSECTION Standard>
342 GVIR_CONFIG_DOMAIN_CAPABILITIES
343 GVIR_CONFIG_DOMAIN_CAPABILITIES_CLASS
344 GVIR_CONFIG_DOMAIN_CAPABILITIES_GET_CLASS
345 GVIR_CONFIG_IS_DOMAIN_CAPABILITIES
346 GVIR_CONFIG_TYPE_DOMAIN_CAPABILITIES
347 gvir_config_domain_capabilities_get_type
348 </SECTION>
349
350 <SECTION>
351 <FILE>libvirt-gconfig-domain-capabilities-os</FILE>
352 <TITLE>GVirConfigDomainCapabilitiesOs</TITLE>
353 GVirConfigDomainCapabilitiesOs
354 GVirConfigDomainCapabilitiesOsClass
355 gvir_config_domain_capabilities_os_get_firmwares
356 GVirConfigDomainCapabilitiesOsPrivate
357 <SUBSECTION Standard>
358 GVIR_CONFIG_DOMAIN_CAPABILITIES_OS
359 GVIR_CONFIG_DOMAIN_CAPABILITIES_OS_CLASS
360 GVIR_CONFIG_DOMAIN_CAPABILITIES_OS_GET_CLASS
361 GVIR_CONFIG_IS_DOMAIN_CAPABILITIES_OS
362 GVIR_CONFIG_TYPE_DOMAIN_CAPABILITIES_OS
363 gvir_config_domain_capabilities_os_get_type
364 </SECTION>
365
366 <SECTION>
333367 <FILE>libvirt-gconfig-domain-channel</FILE>
334368 <TITLE>GVirConfigDomainChannel</TITLE>
335369 GVirConfigDomainChannel
10901124 GVirConfigDomainOsType
10911125 GVirConfigDomainOsSmBiosMode
10921126 GVirConfigDomainOsBootDevice
1127 GVirConfigDomainOsFirmware
10931128 gvir_config_domain_os_new
10941129 gvir_config_domain_os_new_from_xml
10951130 gvir_config_domain_os_set_os_type
11081143 gvir_config_domain_os_set_smbios_mode
11091144 gvir_config_domain_os_enable_boot_menu
11101145 gvir_config_domain_os_bios_enable_serial
1146 gvir_config_domain_os_get_firmware
1147 gvir_config_domain_os_set_firmware
11111148 GVirConfigDomainOsPrivate
11121149 <SUBSECTION Standard>
11131150 GVIR_CONFIG_DOMAIN_OS
18001837 gvir_config_storage_vol_target_set_compat
18011838 gvir_config_storage_vol_target_set_format
18021839 gvir_config_storage_vol_target_set_permissions
1840 GVirConfigStorageVolTargetFeatures
1841 gvir_config_storage_vol_target_set_features
18031842 GVirConfigStorageVolTargetPrivate
18041843 <SUBSECTION Standard>
18051844 GVIR_CONFIG_IS_STORAGE_VOL_TARGET
1111 gvir_config_domain_address_get_type
1212 gvir_config_domain_address_pci_get_type
1313 gvir_config_domain_address_usb_get_type
14 gvir_config_domain_capabilities_get_type
15 gvir_config_domain_capabilities_os_get_type
1416 gvir_config_domain_channel_get_type
1517 gvir_config_domain_chardev_get_type
1618 gvir_config_domain_chardev_source_get_type
3333 GTKDOC_LIBS = \
3434 $(GOBJECT2_LIBS) \
3535 $(LIBXML2_LIBS) \
36 $(top_builddir)/libvirt-gconfig/libvirt-gconfig-1.0.la
36 $(top_builddir)/libvirt-glib/libvirt-glib-1.0.la \
37 $(top_builddir)/libvirt-gconfig/libvirt-gconfig-1.0.la \
38 $(top_builddir)/libvirt-gobject/libvirt-gobject-1.0.la \
39 $(NULL)
3740
3841 include $(top_srcdir)/gtk-doc.make
0 # Makefile.in generated by automake 1.15.1 from Makefile.am.
0 # Makefile.in generated by automake 1.16.1 from Makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
1414 @SET_MAKE@
1515
1616 # -*- mode: makefile -*-
17 #
18 # gtk-doc.make - make rules for gtk-doc
19 # Copyright (C) 2003 James Henstridge
20 # 2004-2007 Damon Chaplin
21 # 2007-2017 Stefan Sauer
22 #
23 # This program is free software: you can redistribute it and/or modify
24 # it under the terms of the GNU General Public License as published by
25 # the Free Software Foundation, either version 3 of the License, or
26 # (at your option) any later version.
27 #
28 # This program is distributed in the hope that it will be useful,
29 # but WITHOUT ANY WARRANTY; without even the implied warranty of
30 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
31 # GNU General Public License for more details.
32 #
33 # You should have received a copy of the GNU General Public License
34 # along with this program. If not, see <http://www.gnu.org/licenses/>.
1735
1836 ####################################
1937 # Everything below here is generic #
95113 subdir = docs/libvirt-gconfig
96114 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
97115 am__aclocal_m4_deps = $(top_srcdir)/m4/glibtests.m4 \
98 $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
99 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
100 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
101 $(top_srcdir)/m4/manywarnings.m4 \
116 $(top_srcdir)/m4/gtk-doc.m4 $(top_srcdir)/m4/introspection.m4 \
117 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
118 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
119 $(top_srcdir)/m4/lt~obsolete.m4 \
120 $(top_srcdir)/m4/manywarnings.m4 $(top_srcdir)/m4/pkg.m4 \
102121 $(top_srcdir)/m4/virt-compile-warnings.m4 \
103 $(top_srcdir)/m4/virt-gettext.m4 $(top_srcdir)/m4/warnings.m4 \
122 $(top_srcdir)/m4/virt-nls.m4 $(top_srcdir)/m4/warnings.m4 \
104123 $(top_srcdir)/configure.ac
105124 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
106125 $(ACLOCAL_M4)
132151 am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/gtk-doc.make
133152 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
134153 ACLOCAL = @ACLOCAL@
135 ALL_LINGUAS = @ALL_LINGUAS@
136154 AMTAR = @AMTAR@
137155 AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
138156 AR = @AR@
163181 EGREP = @EGREP@
164182 EXEEXT = @EXEEXT@
165183 FGREP = @FGREP@
166 GETTEXT_PACKAGE = @GETTEXT_PACKAGE@
167184 GIO2_CFLAGS = @GIO2_CFLAGS@
168185 GIO2_LIBS = @GIO2_LIBS@
169186 GLIB2_CFLAGS = @GLIB2_CFLAGS@
170187 GLIB2_LIBS = @GLIB2_LIBS@
171188 GLIB2_REQUIRED = @GLIB2_REQUIRED@
189 GLIB2_VERSION_SYMBOL = @GLIB2_VERSION_SYMBOL@
172190 GLIB_MKENUMS = @GLIB_MKENUMS@
173 GMSGFMT = @GMSGFMT@
174191 GOBJECT2_CFLAGS = @GOBJECT2_CFLAGS@
175192 GOBJECT2_LIBS = @GOBJECT2_LIBS@
176193 GREP = @GREP@
188205 INSTALL_PROGRAM = @INSTALL_PROGRAM@
189206 INSTALL_SCRIPT = @INSTALL_SCRIPT@
190207 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
191 INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
192 INTLTOOL_MERGE = @INTLTOOL_MERGE@
193 INTLTOOL_PERL = @INTLTOOL_PERL@
194 INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
195 INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@
196 INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@
197 INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@
198 INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@
199208 INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@
200209 INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@
201210 INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@
253262 SET_MAKE = @SET_MAKE@
254263 SHELL = @SHELL@
255264 STRIP = @STRIP@
256 USE_NLS = @USE_NLS@
257265 VAPIGEN = @VAPIGEN@
258266 VERSION = @VERSION@
259267 WARN_CFLAGS = @WARN_CFLAGS@
293301 install_sh = @install_sh@
294302 installed_test_metadir = @installed_test_metadir@
295303 installed_testdir = @installed_testdir@
296 intltool__v_merge_options_ = @intltool__v_merge_options_@
297 intltool__v_merge_options_0 = @intltool__v_merge_options_0@
298304 libdir = @libdir@
299305 libexecdir = @libexecdir@
300306 localedir = @localedir@
336342 GTKDOC_LIBS = \
337343 $(GOBJECT2_LIBS) \
338344 $(LIBXML2_LIBS) \
339 $(top_builddir)/libvirt-gconfig/libvirt-gconfig-1.0.la
345 $(top_builddir)/libvirt-glib/libvirt-glib-1.0.la \
346 $(top_builddir)/libvirt-gconfig/libvirt-gconfig-1.0.la \
347 $(top_builddir)/libvirt-gobject/libvirt-gobject-1.0.la \
348 $(NULL)
340349
341350 @GTK_DOC_USE_LIBTOOL_FALSE@GTKDOC_CC = $(CC) $(INCLUDES) $(GTKDOC_DEPS_CFLAGS) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
342351 @GTK_DOC_USE_LIBTOOL_TRUE@GTKDOC_CC = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(INCLUDES) $(GTKDOC_DEPS_CFLAGS) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
354363 TARGET_DIR = $(HTML_DIR)/$(DOC_MODULE)
355364 SETUP_FILES = \
356365 $(content_files) \
366 $(expand_content_files) \
357367 $(DOC_MAIN_SGML_FILE) \
358368 $(DOC_MODULE)-sections.txt \
359369 $(DOC_MODULE)-overrides.txt
378388 $(DOC_MODULE)-undeclared.txt \
379389 $(DOC_MODULE)-unused.txt
380390
381 CLEANFILES = $(SCANOBJ_FILES) $(REPORT_FILES) $(DOC_STAMPS)
382 @ENABLE_GTK_DOC_TRUE@@GTK_DOC_BUILD_HTML_FALSE@HTML_BUILD_STAMP =
383 @ENABLE_GTK_DOC_TRUE@@GTK_DOC_BUILD_HTML_TRUE@HTML_BUILD_STAMP = html-build.stamp
384 @ENABLE_GTK_DOC_TRUE@@GTK_DOC_BUILD_PDF_FALSE@PDF_BUILD_STAMP =
385 @ENABLE_GTK_DOC_TRUE@@GTK_DOC_BUILD_PDF_TRUE@PDF_BUILD_STAMP = pdf-build.stamp
391 CLEANFILES = $(SCANOBJ_FILES) $(REPORT_FILES) $(DOC_STAMPS) gtkdoc-check.test
392 @GTK_DOC_BUILD_HTML_FALSE@HTML_BUILD_STAMP =
393 @GTK_DOC_BUILD_HTML_TRUE@HTML_BUILD_STAMP = html-build.stamp
394 @GTK_DOC_BUILD_PDF_FALSE@PDF_BUILD_STAMP =
395 @GTK_DOC_BUILD_PDF_TRUE@PDF_BUILD_STAMP = pdf-build.stamp
396
397 #### setup ####
398 GTK_DOC_V_SETUP = $(GTK_DOC_V_SETUP_@AM_V@)
399 GTK_DOC_V_SETUP_ = $(GTK_DOC_V_SETUP_@AM_DEFAULT_V@)
400 GTK_DOC_V_SETUP_0 = @echo " DOC Preparing build";
401
402 #### scan ####
403 GTK_DOC_V_SCAN = $(GTK_DOC_V_SCAN_@AM_V@)
404 GTK_DOC_V_SCAN_ = $(GTK_DOC_V_SCAN_@AM_DEFAULT_V@)
405 GTK_DOC_V_SCAN_0 = @echo " DOC Scanning header files";
406 GTK_DOC_V_INTROSPECT = $(GTK_DOC_V_INTROSPECT_@AM_V@)
407 GTK_DOC_V_INTROSPECT_ = $(GTK_DOC_V_INTROSPECT_@AM_DEFAULT_V@)
408 GTK_DOC_V_INTROSPECT_0 = @echo " DOC Introspecting gobjects";
409
410 #### xml ####
411 GTK_DOC_V_XML = $(GTK_DOC_V_XML_@AM_V@)
412 GTK_DOC_V_XML_ = $(GTK_DOC_V_XML_@AM_DEFAULT_V@)
413 GTK_DOC_V_XML_0 = @echo " DOC Building XML";
414
415 #### html ####
416 GTK_DOC_V_HTML = $(GTK_DOC_V_HTML_@AM_V@)
417 GTK_DOC_V_HTML_ = $(GTK_DOC_V_HTML_@AM_DEFAULT_V@)
418 GTK_DOC_V_HTML_0 = @echo " DOC Building HTML";
419 GTK_DOC_V_XREF = $(GTK_DOC_V_XREF_@AM_V@)
420 GTK_DOC_V_XREF_ = $(GTK_DOC_V_XREF_@AM_DEFAULT_V@)
421 GTK_DOC_V_XREF_0 = @echo " DOC Fixing cross-references";
422
423 #### pdf ####
424 GTK_DOC_V_PDF = $(GTK_DOC_V_PDF_@AM_V@)
425 GTK_DOC_V_PDF_ = $(GTK_DOC_V_PDF_@AM_DEFAULT_V@)
426 GTK_DOC_V_PDF_0 = @echo " DOC Building PDF";
386427 all: all-am
387428
388429 .SUFFIXES:
403444 *config.status*) \
404445 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
405446 *) \
406 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
407 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
447 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
448 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
408449 esac;
409450 $(top_srcdir)/gtk-doc.make $(am__empty):
410451
429470 cscope cscopelist:
430471
431472
432 distdir: $(DISTFILES)
473 distdir: $(BUILT_SOURCES)
474 $(MAKE) $(AM_MAKEFLAGS) distdir-am
475
476 distdir-am: $(DISTFILES)
433477 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
434478 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
435479 list='$(DISTFILES)'; \
464508 dist-hook
465509 check-am: all-am
466510 check: check-am
511 @ENABLE_GTK_DOC_FALSE@all-local:
467512 all-am: Makefile all-local
468513 installdirs:
469514 install: install-am
583628 .PRECIOUS: Makefile
584629
585630
586 @ENABLE_GTK_DOC_TRUE@all-local: $(HTML_BUILD_STAMP) $(PDF_BUILD_STAMP)
587 @ENABLE_GTK_DOC_FALSE@all-local:
631 gtkdoc-check.test: Makefile
632 $(AM_V_GEN)echo "#!/bin/sh -e" > $@; \
633 echo "$(GTKDOC_CHECK_PATH) || exit 1" >> $@; \
634 chmod +x $@
635
636 all-gtk-doc: $(HTML_BUILD_STAMP) $(PDF_BUILD_STAMP)
637 .PHONY: all-gtk-doc
638
639 @ENABLE_GTK_DOC_TRUE@all-local: all-gtk-doc
588640
589641 docs: $(HTML_BUILD_STAMP) $(PDF_BUILD_STAMP)
590642
591643 $(REPORT_FILES): sgml-build.stamp
592644
593 #### setup ####
594
595645 setup-build.stamp:
596 -@if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \
597 echo ' DOC Preparing build'; \
598 files=`echo $(SETUP_FILES) $(expand_content_files) $(DOC_MODULE).types`; \
599 if test "x$$files" != "x" ; then \
600 for file in $$files ; do \
601 test -f $(abs_srcdir)/$$file && \
602 cp -pu $(abs_srcdir)/$$file $(abs_builddir)/ || true; \
603 done; \
604 fi; \
646 -$(GTK_DOC_V_SETUP)if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \
647 files=`echo $(SETUP_FILES) $(DOC_MODULE).types`; \
648 if test "x$$files" != "x" ; then \
649 for file in $$files ; do \
650 destdir=`dirname $(abs_builddir)/$$file`; \
651 test -d "$$destdir" || mkdir -p "$$destdir"; \
652 test -f $(abs_srcdir)/$$file && \
653 cp -pf $(abs_srcdir)/$$file $(abs_builddir)/$$file || true; \
654 done; \
655 fi; \
605656 fi
606 @touch setup-build.stamp
607
608 #### scan ####
609
610 scan-build.stamp: $(HFILE_GLOB) $(CFILE_GLOB)
611 @echo ' DOC Scanning header files'
612 @_source_dir='' ; \
657 $(AM_V_at)touch setup-build.stamp
658
659 scan-build.stamp: setup-build.stamp $(HFILE_GLOB) $(CFILE_GLOB)
660 $(GTK_DOC_V_SCAN)_source_dir='' ; \
613661 for i in $(DOC_SOURCE_DIR) ; do \
614 _source_dir="$${_source_dir} --source-dir=$$i" ; \
662 _source_dir="$${_source_dir} --source-dir=$$i" ; \
615663 done ; \
616664 gtkdoc-scan --module=$(DOC_MODULE) --ignore-headers="$(IGNORE_HFILES)" $${_source_dir} $(SCAN_OPTIONS) $(EXTRA_HFILES)
617 @if grep -l '^..*$$' $(DOC_MODULE).types > /dev/null 2>&1 ; then \
618 echo " DOC Introspecting gobjects"; \
619 scanobj_options=""; \
620 gtkdoc-scangobj 2>&1 --help | grep >/dev/null "\-\-verbose"; \
621 if test "$(?)" = "0"; then \
622 if test "x$(V)" = "x1"; then \
623 scanobj_options="--verbose"; \
624 fi; \
665 $(GTK_DOC_V_INTROSPECT)if grep -l '^..*$$' $(DOC_MODULE).types > /dev/null 2>&1 ; then \
666 scanobj_options=""; \
667 gtkdoc-scangobj 2>&1 --help | grep >/dev/null "\-\-verbose"; \
668 if test "$$?" = "0"; then \
669 if test "x$(V)" = "x1"; then \
670 scanobj_options="--verbose"; \
625671 fi; \
626 CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" RUN="$(GTKDOC_RUN)" CFLAGS="$(GTKDOC_CFLAGS) $(CFLAGS)" LDFLAGS="$(GTKDOC_LIBS) $(LDFLAGS)" \
627 gtkdoc-scangobj $(SCANGOBJ_OPTIONS) $$scanobj_options --module=$(DOC_MODULE); \
672 fi; \
673 CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" RUN="$(GTKDOC_RUN)" CFLAGS="$(GTKDOC_CFLAGS) $(CFLAGS)" LDFLAGS="$(GTKDOC_LIBS) $(LDFLAGS)" \
674 gtkdoc-scangobj $(SCANGOBJ_OPTIONS) $$scanobj_options --module=$(DOC_MODULE); \
628675 else \
629 for i in $(SCANOBJ_FILES) ; do \
630 test -f $$i || touch $$i ; \
631 done \
676 for i in $(SCANOBJ_FILES) ; do \
677 test -f $$i || touch $$i ; \
678 done \
632679 fi
633 @touch scan-build.stamp
680 $(AM_V_at)touch scan-build.stamp
634681
635682 $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt: scan-build.stamp
636683 @true
637684
638 #### xml ####
639
640 sgml-build.stamp: setup-build.stamp $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt $(expand_content_files)
641 @echo ' DOC Building XML'
642 @_source_dir='' ; \
685 sgml-build.stamp: setup-build.stamp $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(HFILE_GLOB) $(CFILE_GLOB) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt $(expand_content_files) xml/gtkdocentities.ent
686 $(GTK_DOC_V_XML)_source_dir='' ; \
643687 for i in $(DOC_SOURCE_DIR) ; do \
644 _source_dir="$${_source_dir} --source-dir=$$i" ; \
688 _source_dir="$${_source_dir} --source-dir=$$i" ; \
645689 done ; \
646690 gtkdoc-mkdb --module=$(DOC_MODULE) --output-format=xml --expand-content-files="$(expand_content_files)" --main-sgml-file=$(DOC_MAIN_SGML_FILE) $${_source_dir} $(MKDB_OPTIONS)
647 @touch sgml-build.stamp
691 $(AM_V_at)touch sgml-build.stamp
648692
649693 sgml.stamp: sgml-build.stamp
650694 @true
651695
652 #### html ####
653
654 html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files)
655 @echo ' DOC Building HTML'
656 @rm -rf html
657 @mkdir html
658 @mkhtml_options=""; \
696 $(DOC_MAIN_SGML_FILE): sgml-build.stamp
697 @true
698
699 xml/gtkdocentities.ent: Makefile
700 $(GTK_DOC_V_XML)$(MKDIR_P) $(@D) && ( \
701 echo "<!ENTITY package \"$(PACKAGE)\">"; \
702 echo "<!ENTITY package_bugreport \"$(PACKAGE_BUGREPORT)\">"; \
703 echo "<!ENTITY package_name \"$(PACKAGE_NAME)\">"; \
704 echo "<!ENTITY package_string \"$(PACKAGE_STRING)\">"; \
705 echo "<!ENTITY package_tarname \"$(PACKAGE_TARNAME)\">"; \
706 echo "<!ENTITY package_url \"$(PACKAGE_URL)\">"; \
707 echo "<!ENTITY package_version \"$(PACKAGE_VERSION)\">"; \
708 ) > $@
709
710 html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) $(expand_content_files)
711 $(GTK_DOC_V_HTML)rm -rf html && mkdir html && \
712 mkhtml_options=""; \
659713 gtkdoc-mkhtml 2>&1 --help | grep >/dev/null "\-\-verbose"; \
660 if test "$(?)" = "0"; then \
714 if test "$$?" = "0"; then \
661715 if test "x$(V)" = "x1"; then \
662716 mkhtml_options="$$mkhtml_options --verbose"; \
663717 fi; \
664718 fi; \
665719 gtkdoc-mkhtml 2>&1 --help | grep >/dev/null "\-\-path"; \
666 if test "$(?)" = "0"; then \
720 if test "$$?" = "0"; then \
667721 mkhtml_options="$$mkhtml_options --path=\"$(abs_srcdir)\""; \
668722 fi; \
669723 cd html && gtkdoc-mkhtml $$mkhtml_options $(MKHTML_OPTIONS) $(DOC_MODULE) ../$(DOC_MAIN_SGML_FILE)
670724 -@test "x$(HTML_IMAGES)" = "x" || \
671725 for file in $(HTML_IMAGES) ; do \
672 if test -f $(abs_srcdir)/$$file ; then \
673 cp $(abs_srcdir)/$$file $(abs_builddir)/html; \
674 fi; \
675 if test -f $(abs_builddir)/$$file ; then \
676 cp $(abs_builddir)/$$file $(abs_builddir)/html; \
677 fi; \
726 test -f $(abs_srcdir)/$$file && cp $(abs_srcdir)/$$file $(abs_builddir)/html; \
727 test -f $(abs_builddir)/$$file && cp $(abs_builddir)/$$file $(abs_builddir)/html; \
728 test -f $$file && cp $$file $(abs_builddir)/html; \
678729 done;
679 @echo ' DOC Fixing cross-references'
680 @gtkdoc-fixxref --module=$(DOC_MODULE) --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS)
681 @touch html-build.stamp
682
683 #### pdf ####
684
685 pdf-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files)
686 @echo ' DOC Building PDF'
687 @rm -f $(DOC_MODULE).pdf
688 @mkpdf_options=""; \
730 $(GTK_DOC_V_XREF)gtkdoc-fixxref --module=$(DOC_MODULE) --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS)
731 $(AM_V_at)touch html-build.stamp
732
733 pdf-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) $(expand_content_files)
734 $(GTK_DOC_V_PDF)rm -f $(DOC_MODULE).pdf && \
735 mkpdf_options=""; \
689736 gtkdoc-mkpdf 2>&1 --help | grep >/dev/null "\-\-verbose"; \
690 if test "$(?)" = "0"; then \
737 if test "$$?" = "0"; then \
691738 if test "x$(V)" = "x1"; then \
692739 mkpdf_options="$$mkpdf_options --verbose"; \
693740 fi; \
702749 done; \
703750 fi; \
704751 gtkdoc-mkpdf --path="$(abs_srcdir)" $$mkpdf_options $(DOC_MODULE) $(DOC_MAIN_SGML_FILE) $(MKPDF_OPTIONS)
705 @touch pdf-build.stamp
752 $(AM_V_at)touch pdf-build.stamp
706753
707754 ##############
708755
709756 clean-local:
710757 @rm -f *~ *.bak
711758 @rm -rf .libs
759 @if echo $(SCAN_OPTIONS) | grep -q "\-\-rebuild-types" ; then \
760 rm -f $(DOC_MODULE).types; \
761 fi
762 @if echo $(SCAN_OPTIONS) | grep -q "\-\-rebuild-sections" ; then \
763 rm -f $(DOC_MODULE)-sections.txt; \
764 fi
712765
713766 distclean-local:
714767 @rm -rf xml html $(REPORT_FILES) $(DOC_MODULE).pdf \
715768 $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt
716769 @if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \
717 rm -f $(SETUP_FILES) $(expand_content_files) $(DOC_MODULE).types; \
770 rm -f $(SETUP_FILES) $(DOC_MODULE).types; \
718771 fi
719772
720 maintainer-clean-local: clean
773 maintainer-clean-local:
721774 @rm -rf xml html
722775
723776 install-data-local:
753806 #
754807 # Require gtk-doc when making dist
755808 #
756 @ENABLE_GTK_DOC_TRUE@dist-check-gtkdoc:
757 @ENABLE_GTK_DOC_FALSE@dist-check-gtkdoc:
758 @ENABLE_GTK_DOC_FALSE@ @echo "*** gtk-doc must be installed and enabled in order to make dist"
759 @ENABLE_GTK_DOC_FALSE@ @false
760
761 dist-hook: dist-check-gtkdoc dist-hook-local
809 @HAVE_GTK_DOC_TRUE@dist-check-gtkdoc: docs
810 @HAVE_GTK_DOC_FALSE@dist-check-gtkdoc:
811 @HAVE_GTK_DOC_FALSE@ @echo "*** gtk-doc is needed to run 'make dist'. ***"
812 @HAVE_GTK_DOC_FALSE@ @echo "*** gtk-doc was not found when 'configure' ran. ***"
813 @HAVE_GTK_DOC_FALSE@ @echo "*** please install gtk-doc and rerun 'configure'. ***"
814 @HAVE_GTK_DOC_FALSE@ @false
815
816 dist-hook: dist-check-gtkdoc all-gtk-doc dist-hook-local
762817 @mkdir $(distdir)/html
763818 @cp ./html/* $(distdir)/html
764819 @-cp ./$(DOC_MODULE).pdf $(distdir)/
77 <link rel="up" href="ch01.html" title="Libvirt-gconfig">
88 <link rel="prev" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol">
99 <link rel="next" href="object-tree.html" title="Object Hierarchy">
10 <meta name="generator" content="GTK-Doc V1.28 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.29 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
6565 </tr>
6666 <tr>
6767 <td class="function_type">
68 <span class="returnvalue">GList</span> *
68 <a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
6969 </td>
7070 <td class="function_name">
7171 <a class="link" href="GVirConfigCapabilities.html#gvir-config-capabilities-get-guests" title="gvir_config_capabilities_get_guests ()">gvir_config_capabilities_get_guests</a> <span class="c_punctuation">()</span>
9999 </div>
100100 <div class="refsect1">
101101 <a name="GVirConfigCapabilities.object-hierarchy"></a><h2>Object Hierarchy</h2>
102 <pre class="screen"> GObject
102 <pre class="screen"> <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a>
103103 <span class="lineart">╰──</span> <a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
104104 <span class="lineart">╰──</span> GVirConfigCapabilities
105105 </pre>
118118 <div class="refsect2">
119119 <a name="gvir-config-capabilities-new-from-xml"></a><h3>gvir_config_capabilities_new_from_xml ()</h3>
120120 <pre class="programlisting"><a class="link" href="GVirConfigCapabilities.html" title="GVirConfigCapabilities"><span class="returnvalue">GVirConfigCapabilities</span></a> *
121 gvir_config_capabilities_new_from_xml (<em class="parameter"><code>const <span class="type">gchar</span> *xml</code></em>,
122 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
121 gvir_config_capabilities_new_from_xml (<em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *xml</code></em>,
122 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
123123 </div>
124124 <hr>
125125 <div class="refsect2">
136136 <hr>
137137 <div class="refsect2">
138138 <a name="gvir-config-capabilities-get-guests"></a><h3>gvir_config_capabilities_get_guests ()</h3>
139 <pre class="programlisting"><span class="returnvalue">GList</span> *
139 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
140140 gvir_config_capabilities_get_guests (<em class="parameter"><code><a class="link" href="GVirConfigCapabilities.html" title="GVirConfigCapabilities"><span class="type">GVirConfigCapabilities</span></a> *caps</code></em>);</pre>
141141 <p>Gets the list of guest capabilities.</p>
142142 <div class="refsect3">
143143 <a name="gvir-config-capabilities-get-guests.returns"></a><h4>Returns</h4>
144 <p>a newly allocated <span class="type">GList</span> of <span class="type">GVirConfigCapabilitiesGuest</span>. </p>
144 <p>a newly allocated <a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="type">GList</span></a> of <span class="type">GVirConfigCapabilitiesGuest</span>. </p>
145145 <p><span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> LibvirtGConfig.CapabilitiesGuest][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
146146 </div>
147147 </div>
170170 </div>
171171 </div>
172172 <div class="footer">
173 <hr>Generated by GTK-Doc V1.28</div>
173 <hr>Generated by GTK-Doc V1.29</div>
174174 </body>
175175 </html>
77 <link rel="up" href="ch01.html" title="Libvirt-gconfig">
88 <link rel="prev" href="GVirConfigObject.html" title="GVirConfigObject">
99 <link rel="next" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot">
10 <meta name="generator" content="GTK-Doc V1.28 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.29 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
119119 </tr>
120120 <tr>
121121 <td class="function_type">
122 <span class="returnvalue">guint64</span>
122 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint64"><span class="returnvalue">guint64</span></a>
123123 </td>
124124 <td class="function_name">
125125 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-memory" title="gvir_config_domain_get_memory ()">gvir_config_domain_get_memory</a> <span class="c_punctuation">()</span>
135135 </tr>
136136 <tr>
137137 <td class="function_type">
138 <span class="returnvalue">guint64</span>
138 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint64"><span class="returnvalue">guint64</span></a>
139139 </td>
140140 <td class="function_name">
141141 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-current-memory" title="gvir_config_domain_get_current_memory ()">gvir_config_domain_get_current_memory</a> <span class="c_punctuation">()</span>
151151 </tr>
152152 <tr>
153153 <td class="function_type">
154 <span class="returnvalue">guint64</span>
154 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint64"><span class="returnvalue">guint64</span></a>
155155 </td>
156156 <td class="function_name">
157157 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-vcpus" title="gvir_config_domain_get_vcpus ()">gvir_config_domain_get_vcpus</a> <span class="c_punctuation">()</span>
167167 </tr>
168168 <tr>
169169 <td class="function_type">
170 <span class="returnvalue">GStrv</span>
170 <a href="/usr/share/gtk-doc/html/glib/glib-String-Utility-Functions.html#GStrv"><span class="returnvalue">GStrv</span></a>
171171 </td>
172172 <td class="function_name">
173173 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-features" title="gvir_config_domain_get_features ()">gvir_config_domain_get_features</a> <span class="c_punctuation">()</span>
254254 </tr>
255255 <tr>
256256 <td class="function_type">
257 <span class="returnvalue">GList</span> *
257 <a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
258258 </td>
259259 <td class="function_name">
260260 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-devices" title="gvir_config_domain_get_devices ()">gvir_config_domain_get_devices</a> <span class="c_punctuation">()</span>
270270 </tr>
271271 <tr>
272272 <td class="function_type">
273 <span class="returnvalue">gboolean</span>
273 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
274274 </td>
275275 <td class="function_name">
276276 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-custom-xml-ns-children" title="gvir_config_domain_set_custom_xml_ns_children ()">gvir_config_domain_set_custom_xml_ns_children</a> <span class="c_punctuation">()</span>
278278 </tr>
279279 <tr>
280280 <td class="function_type">
281 <span class="returnvalue">gboolean</span>
281 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
282282 </td>
283283 <td class="function_name">
284284 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-custom-xml" title="gvir_config_domain_set_custom_xml ()">gvir_config_domain_set_custom_xml</a> <span class="c_punctuation">()</span>
286286 </tr>
287287 <tr>
288288 <td class="function_type">
289 <span class="returnvalue">gchar</span> *
289 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
290290 </td>
291291 <td class="function_name">
292292 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-custom-xml" title="gvir_config_domain_get_custom_xml ()">gvir_config_domain_get_custom_xml</a> <span class="c_punctuation">()</span>
329329 </colgroup>
330330 <tbody>
331331 <tr>
332 <td class="property_type"><span class="type">guint64</span></td>
332 <td class="property_type"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint64"><span class="type">guint64</span></a></td>
333333 <td class="property_name"><a class="link" href="GVirConfigDomain.html#GVirConfigDomain--current-memory" title="The “current-memory” property">current-memory</a></td>
334334 <td class="property_flags">Read / Write</td>
335335 </tr>
336336 <tr>
337337 <td class="property_type">
338 <span class="type">gchar</span> *</td>
338 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>
339339 <td class="property_name"><a class="link" href="GVirConfigDomain.html#GVirConfigDomain--description" title="The “description” property">description</a></td>
340340 <td class="property_flags">Read / Write</td>
341341 </tr>
342342 <tr>
343 <td class="property_type"><span class="type">GStrv</span></td>
343 <td class="property_type"><a href="/usr/share/gtk-doc/html/glib/glib-String-Utility-Functions.html#GStrv"><span class="type">GStrv</span></a></td>
344344 <td class="property_name"><a class="link" href="GVirConfigDomain.html#GVirConfigDomain--features" title="The “features” property">features</a></td>
345345 <td class="property_flags">Read / Write</td>
346346 </tr>
347347 <tr>
348 <td class="property_type"><span class="type">guint64</span></td>
348 <td class="property_type"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint64"><span class="type">guint64</span></a></td>
349349 <td class="property_name"><a class="link" href="GVirConfigDomain.html#GVirConfigDomain--memory" title="The “memory” property">memory</a></td>
350350 <td class="property_flags">Read / Write</td>
351351 </tr>
352352 <tr>
353353 <td class="property_type">
354 <span class="type">gchar</span> *</td>
354 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>
355355 <td class="property_name"><a class="link" href="GVirConfigDomain.html#GVirConfigDomain--name" title="The “name” property">name</a></td>
356356 <td class="property_flags">Read / Write</td>
357357 </tr>
358358 <tr>
359359 <td class="property_type">
360 <span class="type">gchar</span> *</td>
360 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>
361361 <td class="property_name"><a class="link" href="GVirConfigDomain.html#GVirConfigDomain--title" title="The “title” property">title</a></td>
362362 <td class="property_flags">Read / Write</td>
363363 </tr>
364364 <tr>
365365 <td class="property_type">
366 <span class="type">gchar</span> *</td>
366 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>
367367 <td class="property_name"><a class="link" href="GVirConfigDomain.html#GVirConfigDomain--uuid" title="The “uuid” property">uuid</a></td>
368368 <td class="property_flags">Read / Write</td>
369369 </tr>
370370 <tr>
371 <td class="property_type"><span class="type">guint64</span></td>
371 <td class="property_type"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint64"><span class="type">guint64</span></a></td>
372372 <td class="property_name"><a class="link" href="GVirConfigDomain.html#GVirConfigDomain--vcpu" title="The “vcpu” property">vcpu</a></td>
373373 <td class="property_flags">Read / Write</td>
374374 </tr>
412412 </div>
413413 <div class="refsect1">
414414 <a name="GVirConfigDomain.object-hierarchy"></a><h2>Object Hierarchy</h2>
415 <pre class="screen"> GObject
415 <pre class="screen"> <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a>
416416 <span class="lineart">╰──</span> <a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
417417 <span class="lineart">╰──</span> GVirConfigDomain
418418 </pre>
425425 <div class="refsect2">
426426 <a name="gvir-config-domain-new-from-xml"></a><h3>gvir_config_domain_new_from_xml ()</h3>
427427 <pre class="programlisting"><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="returnvalue">GVirConfigDomain</span></a> *
428 gvir_config_domain_new_from_xml (<em class="parameter"><code>const <span class="type">gchar</span> *xml</code></em>,
429 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
428 gvir_config_domain_new_from_xml (<em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *xml</code></em>,
429 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
430430 </div>
431431 <hr>
432432 <div class="refsect2">
555555 <hr>
556556 <div class="refsect2">
557557 <a name="gvir-config-domain-get-memory"></a><h3>gvir_config_domain_get_memory ()</h3>
558 <pre class="programlisting"><span class="returnvalue">guint64</span>
558 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint64"><span class="returnvalue">guint64</span></a>
559559 gvir_config_domain_get_memory (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>);</pre>
560560 <div class="refsect3">
561561 <a name="gvir-config-domain-get-memory.parameters"></a><h4>Parameters</h4>
582582 <a name="gvir-config-domain-set-memory"></a><h3>gvir_config_domain_set_memory ()</h3>
583583 <pre class="programlisting"><span class="returnvalue">void</span>
584584 gvir_config_domain_set_memory (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
585 <em class="parameter"><code><span class="type">guint64</span> memory</code></em>);</pre>
585 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint64"><span class="type">guint64</span></a> memory</code></em>);</pre>
586586 <p>Sets the maximum amount of RAM allocated to <em class="parameter"><code>domain</code></em>
587587 in kilobytes (i.e.
588588 blocks of 1024 bytes).</p>
612612 <hr>
613613 <div class="refsect2">
614614 <a name="gvir-config-domain-get-current-memory"></a><h3>gvir_config_domain_get_current_memory ()</h3>
615 <pre class="programlisting"><span class="returnvalue">guint64</span>
615 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint64"><span class="returnvalue">guint64</span></a>
616616 gvir_config_domain_get_current_memory (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>);</pre>
617617 <div class="refsect3">
618618 <a name="gvir-config-domain-get-current-memory.parameters"></a><h4>Parameters</h4>
639639 <a name="gvir-config-domain-set-current-memory"></a><h3>gvir_config_domain_set_current_memory ()</h3>
640640 <pre class="programlisting"><span class="returnvalue">void</span>
641641 gvir_config_domain_set_current_memory (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
642 <em class="parameter"><code><span class="type">guint64</span> memory</code></em>);</pre>
642 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint64"><span class="type">guint64</span></a> memory</code></em>);</pre>
643643 <p>Sets the current amount of RAM allocated to <em class="parameter"><code>domain</code></em>
644644 in kilobytes (i.e.
645645 blocks of 1024 bytes). This can be set to less than the maximum domain
673673 <hr>
674674 <div class="refsect2">
675675 <a name="gvir-config-domain-get-vcpus"></a><h3>gvir_config_domain_get_vcpus ()</h3>
676 <pre class="programlisting"><span class="returnvalue">guint64</span>
676 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint64"><span class="returnvalue">guint64</span></a>
677677 gvir_config_domain_get_vcpus (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>);</pre>
678678 </div>
679679 <hr>
681681 <a name="gvir-config-domain-set-vcpus"></a><h3>gvir_config_domain_set_vcpus ()</h3>
682682 <pre class="programlisting"><span class="returnvalue">void</span>
683683 gvir_config_domain_set_vcpus (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
684 <em class="parameter"><code><span class="type">guint64</span> vcpu_count</code></em>);</pre>
684 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint64"><span class="type">guint64</span></a> vcpu_count</code></em>);</pre>
685685 </div>
686686 <hr>
687687 <div class="refsect2">
688688 <a name="gvir-config-domain-get-features"></a><h3>gvir_config_domain_get_features ()</h3>
689 <pre class="programlisting"><span class="returnvalue">GStrv</span>
689 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-String-Utility-Functions.html#GStrv"><span class="returnvalue">GStrv</span></a>
690690 gvir_config_domain_get_features (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>);</pre>
691691 <div class="refsect3">
692692 <a name="gvir-config-domain-get-features.parameters"></a><h4>Parameters</h4>
706706 <div class="refsect3">
707707 <a name="gvir-config-domain-get-features.returns"></a><h4>Returns</h4>
708708 <p>The returned list should be freed with
709 <code class="function">g_strfreev()</code> when no longer needed. </p>
709 <a href="/usr/share/gtk-doc/html/glib/glib-String-Utility-Functions.html#g-strfreev"><code class="function">g_strfreev()</code></a> when no longer needed. </p>
710710 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
711711 </div>
712712 </div>
715715 <a name="gvir-config-domain-set-features"></a><h3>gvir_config_domain_set_features ()</h3>
716716 <pre class="programlisting"><span class="returnvalue">void</span>
717717 gvir_config_domain_set_features (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
718 <em class="parameter"><code>const <span class="type">GStrv</span> features</code></em>);</pre>
718 <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-String-Utility-Functions.html#GStrv"><span class="type">GStrv</span></a> features</code></em>);</pre>
719719 </div>
720720 <hr>
721721 <div class="refsect2">
742742 <div class="refsect3">
743743 <a name="gvir-config-domain-get-clock.returns"></a><h4>Returns</h4>
744744 <p>A <span class="type">GVirConfigDomainClock</span>. The returned
745 object should be unreffed with <code class="function">g_object_unref()</code> when no longer needed. </p>
745 object should be unreffed with <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer needed. </p>
746746 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
747747 </div>
748748 </div>
800800 <div class="refsect3">
801801 <a name="gvir-config-domain-get-os.returns"></a><h4>Returns</h4>
802802 <p>A <span class="type">GVirConfigDomainOs</span>. The returned
803 object should be unreffed with <code class="function">g_object_unref()</code> when no longer needed. </p>
803 object should be unreffed with <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer needed. </p>
804804 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
805805 </div>
806806 </div>
905905 <a name="gvir-config-domain-set-devices"></a><h3>gvir_config_domain_set_devices ()</h3>
906906 <pre class="programlisting"><span class="returnvalue">void</span>
907907 gvir_config_domain_set_devices (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
908 <em class="parameter"><code><span class="type">GList</span> *devices</code></em>);</pre>
908 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="type">GList</span></a> *devices</code></em>);</pre>
909909 <div class="refsect3">
910910 <a name="gvir-config-domain-set-devices.parameters"></a><h4>Parameters</h4>
911911 <div class="informaltable"><table class="informaltable" width="100%" border="0">
939939 <hr>
940940 <div class="refsect2">
941941 <a name="gvir-config-domain-get-devices"></a><h3>gvir_config_domain_get_devices ()</h3>
942 <pre class="programlisting"><span class="returnvalue">GList</span> *
942 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
943943 gvir_config_domain_get_devices (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>);</pre>
944944 <p>Gets the list of devices attached to <em class="parameter"><code>domain</code></em>
945945 . The returned list should
946 be freed with <code class="function">g_list_free()</code>, after its elements have been unreffed with
947 <code class="function">g_object_unref()</code>.</p>
946 be freed with <a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#g-list-free"><code class="function">g_list_free()</code></a>, after its elements have been unreffed with
947 <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a>.</p>
948948 <div class="refsect3">
949949 <a name="gvir-config-domain-get-devices.parameters"></a><h4>Parameters</h4>
950950 <div class="informaltable"><table class="informaltable" width="100%" border="0">
962962 </div>
963963 <div class="refsect3">
964964 <a name="gvir-config-domain-get-devices.returns"></a><h4>Returns</h4>
965 <p>a newly allocated <span class="type">GList</span> of <span class="type">GVirConfigDomainDevice</span>. </p>
965 <p>a newly allocated <a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="type">GList</span></a> of <span class="type">GVirConfigDomainDevice</span>. </p>
966966 <p><span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> LibvirtGConfig.DomainDevice][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
967967 </div>
968968 </div>
977977 <hr>
978978 <div class="refsect2">
979979 <a name="gvir-config-domain-set-custom-xml-ns-children"></a><h3>gvir_config_domain_set_custom_xml_ns_children ()</h3>
980 <pre class="programlisting"><span class="returnvalue">gboolean</span>
980 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
981981 gvir_config_domain_set_custom_xml_ns_children
982982 (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
983 <em class="parameter"><code>const <span class="type">gchar</span> *xml</code></em>,
984 <em class="parameter"><code>const <span class="type">gchar</span> *ns</code></em>,
985 <em class="parameter"><code>const <span class="type">gchar</span> *ns_uri</code></em>,
986 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
983 <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *xml</code></em>,
984 <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *ns</code></em>,
985 <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *ns_uri</code></em>,
986 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
987987 </div>
988988 <hr>
989989 <div class="refsect2">
990990 <a name="gvir-config-domain-set-custom-xml"></a><h3>gvir_config_domain_set_custom_xml ()</h3>
991 <pre class="programlisting"><span class="returnvalue">gboolean</span>
991 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
992992 gvir_config_domain_set_custom_xml (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
993 <em class="parameter"><code>const <span class="type">gchar</span> *xml</code></em>,
994 <em class="parameter"><code>const <span class="type">gchar</span> *ns</code></em>,
995 <em class="parameter"><code>const <span class="type">gchar</span> *ns_uri</code></em>,
996 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
993 <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *xml</code></em>,
994 <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *ns</code></em>,
995 <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *ns_uri</code></em>,
996 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
997997 </div>
998998 <hr>
999999 <div class="refsect2">
10001000 <a name="gvir-config-domain-get-custom-xml"></a><h3>gvir_config_domain_get_custom_xml ()</h3>
1001 <pre class="programlisting"><span class="returnvalue">gchar</span> *
1001 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
10021002 gvir_config_domain_get_custom_xml (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
1003 <em class="parameter"><code>const <span class="type">gchar</span> *ns_uri</code></em>);</pre>
1003 <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *ns_uri</code></em>);</pre>
10041004 </div>
10051005 <hr>
10061006 <div class="refsect2">
10271027 <div class="refsect3">
10281028 <a name="gvir-config-domain-get-cpu.returns"></a><h4>Returns</h4>
10291029 <p>A <span class="type">GVirConfigDomainCpu</span>. The returned object
1030 should be unreffed with <code class="function">g_object_unref()</code> when no longer needed. </p>
1030 should be unreffed with <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer needed. </p>
10311031 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
10321032 </div>
10331033 </div>
12851285 <a name="GVirConfigDomain.property-details"></a><h2>Property Details</h2>
12861286 <div class="refsect2">
12871287 <a name="GVirConfigDomain--current-memory"></a><h3>The <code class="literal">“current-memory”</code> property</h3>
1288 <pre class="programlisting"> “current-memory” <span class="type">guint64</span></pre>
1288 <pre class="programlisting"> “current-memory” <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint64"><span class="type">guint64</span></a></pre>
12891289 <p>Current Guest Memory (in kilobytes).</p>
12901290 <p>Flags: Read / Write</p>
12911291 <p>Default value: 0</p>
12931293 <hr>
12941294 <div class="refsect2">
12951295 <a name="GVirConfigDomain--description"></a><h3>The <code class="literal">“description”</code> property</h3>
1296 <pre class="programlisting"> “description” <span class="type">gchar</span> *</pre>
1296 <pre class="programlisting"> “description” <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</pre>
12971297 <p>Some human readable description (could be anything).</p>
12981298 <p>Flags: Read / Write</p>
12991299 <p>Default value: NULL</p>
13011301 <hr>
13021302 <div class="refsect2">
13031303 <a name="GVirConfigDomain--features"></a><h3>The <code class="literal">“features”</code> property</h3>
1304 <pre class="programlisting"> “features” <span class="type">GStrv</span></pre>
1304 <pre class="programlisting"> “features” <a href="/usr/share/gtk-doc/html/glib/glib-String-Utility-Functions.html#GStrv"><span class="type">GStrv</span></a></pre>
13051305 <p>Hypervisor Features.</p>
13061306 <p>Flags: Read / Write</p>
13071307 </div>
13081308 <hr>
13091309 <div class="refsect2">
13101310 <a name="GVirConfigDomain--memory"></a><h3>The <code class="literal">“memory”</code> property</h3>
1311 <pre class="programlisting"> “memory” <span class="type">guint64</span></pre>
1311 <pre class="programlisting"> “memory” <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint64"><span class="type">guint64</span></a></pre>
13121312 <p>Maximum Guest Memory (in kilobytes).</p>
13131313 <p>Flags: Read / Write</p>
13141314 <p>Default value: 0</p>
13161316 <hr>
13171317 <div class="refsect2">
13181318 <a name="GVirConfigDomain--name"></a><h3>The <code class="literal">“name”</code> property</h3>
1319 <pre class="programlisting"> “name” <span class="type">gchar</span> *</pre>
1319 <pre class="programlisting"> “name” <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</pre>
13201320 <p>Domain Name.</p>
13211321 <p>Flags: Read / Write</p>
13221322 <p>Default value: NULL</p>
13241324 <hr>
13251325 <div class="refsect2">
13261326 <a name="GVirConfigDomain--title"></a><h3>The <code class="literal">“title”</code> property</h3>
1327 <pre class="programlisting"> “title” <span class="type">gchar</span> *</pre>
1327 <pre class="programlisting"> “title” <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</pre>
13281328 <p>A short description - title - of the domain.</p>
13291329 <p>Flags: Read / Write</p>
13301330 <p>Default value: NULL</p>
13321332 <hr>
13331333 <div class="refsect2">
13341334 <a name="GVirConfigDomain--uuid"></a><h3>The <code class="literal">“uuid”</code> property</h3>
1335 <pre class="programlisting"> “uuid” <span class="type">gchar</span> *</pre>
1335 <pre class="programlisting"> “uuid” <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</pre>
13361336 <p>Domain UUID.</p>
13371337 <p>Flags: Read / Write</p>
13381338 <p>Default value: NULL</p>
13401340 <hr>
13411341 <div class="refsect2">
13421342 <a name="GVirConfigDomain--vcpu"></a><h3>The <code class="literal">“vcpu”</code> property</h3>
1343 <pre class="programlisting"> “vcpu” <span class="type">guint64</span></pre>
1343 <pre class="programlisting"> “vcpu” <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint64"><span class="type">guint64</span></a></pre>
13441344 <p>Maximum Number of Guest Virtual CPUs.</p>
13451345 <p>Flags: Read / Write</p>
13461346 <p>Default value: 1</p>
13481348 </div>
13491349 </div>
13501350 <div class="footer">
1351 <hr>Generated by GTK-Doc V1.28</div>
1351 <hr>Generated by GTK-Doc V1.29</div>
13521352 </body>
13531353 </html>
77 <link rel="up" href="ch01.html" title="Libvirt-gconfig">
88 <link rel="prev" href="GVirConfigDomain.html" title="GVirConfigDomain">
99 <link rel="next" href="GVirConfigInterface.html" title="GVirConfigInterface">
10 <meta name="generator" content="GTK-Doc V1.28 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.29 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
165165 </tr>
166166 <tr>
167167 <td class="function_type">
168 <span class="returnvalue">GList</span> *
168 <a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
169169 </td>
170170 <td class="function_name">
171171 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-disks" title="gvir_config_domain_snapshot_get_disks ()">gvir_config_domain_snapshot_get_disks</a> <span class="c_punctuation">()</span>
207207 </div>
208208 <div class="refsect1">
209209 <a name="GVirConfigDomainSnapshot.object-hierarchy"></a><h2>Object Hierarchy</h2>
210 <pre class="screen"> GObject
210 <pre class="screen"> <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a>
211211 <span class="lineart">╰──</span> <a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
212212 <span class="lineart">╰──</span> GVirConfigDomainSnapshot
213213 </pre>
227227 <a name="gvir-config-domain-snapshot-new-from-xml"></a><h3>gvir_config_domain_snapshot_new_from_xml ()</h3>
228228 <pre class="programlisting"><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="returnvalue">GVirConfigDomainSnapshot</span></a> *
229229 gvir_config_domain_snapshot_new_from_xml
230 (<em class="parameter"><code>const <span class="type">gchar</span> *xml</code></em>,
231 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
230 (<em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *xml</code></em>,
231 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
232232 </div>
233233 <hr>
234234 <div class="refsect2">
334334 <div class="refsect3">
335335 <a name="gvir-config-domain-snapshot-get-domain.returns"></a><h4>Returns</h4>
336336 <p>A <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a>. The returned object
337 should be unreffed with <code class="function">g_object_unref()</code> when no longer needed. </p>
337 should be unreffed with <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer needed. </p>
338338 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
339339 </div>
340340 </div>
343343 <a name="gvir-config-domain-snapshot-set-disks"></a><h3>gvir_config_domain_snapshot_set_disks ()</h3>
344344 <pre class="programlisting"><span class="returnvalue">void</span>
345345 gvir_config_domain_snapshot_set_disks (<em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a> *snapshot</code></em>,
346 <em class="parameter"><code><span class="type">GList</span> *disks</code></em>);</pre>
346 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="type">GList</span></a> *disks</code></em>);</pre>
347347 <div class="refsect3">
348348 <a name="gvir-config-domain-snapshot-set-disks.parameters"></a><h4>Parameters</h4>
349349 <div class="informaltable"><table class="informaltable" width="100%" border="0">
377377 <hr>
378378 <div class="refsect2">
379379 <a name="gvir-config-domain-snapshot-get-disks"></a><h3>gvir_config_domain_snapshot_get_disks ()</h3>
380 <pre class="programlisting"><span class="returnvalue">GList</span> *
380 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
381381 gvir_config_domain_snapshot_get_disks (<em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a> *snapshot</code></em>);</pre>
382382 <p>Gets the list of disks attached to <em class="parameter"><code>snapshot</code></em>
383383 . The returned list should
384 be freed with <code class="function">g_list_free()</code>, after its elements have been unreffed with
385 <code class="function">g_object_unref()</code>.</p>
384 be freed with <a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#g-list-free"><code class="function">g_list_free()</code></a>, after its elements have been unreffed with
385 <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a>.</p>
386386 <div class="refsect3">
387387 <a name="gvir-config-domain-snapshot-get-disks.parameters"></a><h4>Parameters</h4>
388388 <div class="informaltable"><table class="informaltable" width="100%" border="0">
400400 </div>
401401 <div class="refsect3">
402402 <a name="gvir-config-domain-snapshot-get-disks.returns"></a><h4>Returns</h4>
403 <p>a newly allocated <span class="type">GList</span> of <span class="type">GVirConfigDomainSnapshotDisk</span>. </p>
403 <p>a newly allocated <a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="type">GList</span></a> of <span class="type">GVirConfigDomainSnapshotDisk</span>. </p>
404404 <p><span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> LibvirtGConfig.DomainSnapshotDisk][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
405405 </div>
406406 </div>
521521 </div>
522522 </div>
523523 <div class="footer">
524 <hr>Generated by GTK-Doc V1.28</div>
524 <hr>Generated by GTK-Doc V1.29</div>
525525 </body>
526526 </html>
77 <link rel="up" href="ch01.html" title="Libvirt-gconfig">
88 <link rel="prev" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot">
99 <link rel="next" href="GVirConfigNetworkFilter.html" title="GVirConfigNetworkFilter">
10 <meta name="generator" content="GTK-Doc V1.28 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.29 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
8383 </div>
8484 <div class="refsect1">
8585 <a name="GVirConfigInterface.object-hierarchy"></a><h2>Object Hierarchy</h2>
86 <pre class="screen"> GObject
86 <pre class="screen"> <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a>
8787 <span class="lineart">╰──</span> <a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
8888 <span class="lineart">╰──</span> GVirConfigInterface
8989 </pre>
102102 <div class="refsect2">
103103 <a name="gvir-config-interface-new-from-xml"></a><h3>gvir_config_interface_new_from_xml ()</h3>
104104 <pre class="programlisting"><a class="link" href="GVirConfigInterface.html" title="GVirConfigInterface"><span class="returnvalue">GVirConfigInterface</span></a> *
105 gvir_config_interface_new_from_xml (<em class="parameter"><code>const <span class="type">gchar</span> *xml</code></em>,
106 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
105 gvir_config_interface_new_from_xml (<em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *xml</code></em>,
106 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
107107 </div>
108108 </div>
109109 <div class="refsect1">
130130 </div>
131131 </div>
132132 <div class="footer">
133 <hr>Generated by GTK-Doc V1.28</div>
133 <hr>Generated by GTK-Doc V1.29</div>
134134 </body>
135135 </html>
77 <link rel="up" href="ch01.html" title="Libvirt-gconfig">
88 <link rel="prev" href="GVirConfigNetworkFilter.html" title="GVirConfigNetworkFilter">
99 <link rel="next" href="GVirConfigNodeDevice.html" title="GVirConfigNodeDevice">
10 <meta name="generator" content="GTK-Doc V1.28 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.29 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
8383 </div>
8484 <div class="refsect1">
8585 <a name="GVirConfigNetwork.object-hierarchy"></a><h2>Object Hierarchy</h2>
86 <pre class="screen"> GObject
86 <pre class="screen"> <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a>
8787 <span class="lineart">╰──</span> <a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
8888 <span class="lineart">╰──</span> GVirConfigNetwork
8989 </pre>
102102 <div class="refsect2">
103103 <a name="gvir-config-network-new-from-xml"></a><h3>gvir_config_network_new_from_xml ()</h3>
104104 <pre class="programlisting"><a class="link" href="GVirConfigNetwork.html" title="GVirConfigNetwork"><span class="returnvalue">GVirConfigNetwork</span></a> *
105 gvir_config_network_new_from_xml (<em class="parameter"><code>const <span class="type">gchar</span> *xml</code></em>,
106 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
105 gvir_config_network_new_from_xml (<em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *xml</code></em>,
106 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
107107 </div>
108108 </div>
109109 <div class="refsect1">
130130 </div>
131131 </div>
132132 <div class="footer">
133 <hr>Generated by GTK-Doc V1.28</div>
133 <hr>Generated by GTK-Doc V1.29</div>
134134 </body>
135135 </html>
77 <link rel="up" href="ch01.html" title="Libvirt-gconfig">
88 <link rel="prev" href="GVirConfigInterface.html" title="GVirConfigInterface">
99 <link rel="next" href="GVirConfigNetwork.html" title="GVirConfigNetwork">
10 <meta name="generator" content="GTK-Doc V1.28 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.29 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
8383 </div>
8484 <div class="refsect1">
8585 <a name="GVirConfigNetworkFilter.object-hierarchy"></a><h2>Object Hierarchy</h2>
86 <pre class="screen"> GObject
86 <pre class="screen"> <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a>
8787 <span class="lineart">╰──</span> <a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
8888 <span class="lineart">╰──</span> GVirConfigNetworkFilter
8989 </pre>
103103 <a name="gvir-config-network-filter-new-from-xml"></a><h3>gvir_config_network_filter_new_from_xml ()</h3>
104104 <pre class="programlisting"><a class="link" href="GVirConfigNetworkFilter.html" title="GVirConfigNetworkFilter"><span class="returnvalue">GVirConfigNetworkFilter</span></a> *
105105 gvir_config_network_filter_new_from_xml
106 (<em class="parameter"><code>const <span class="type">gchar</span> *xml</code></em>,
107 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
106 (<em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *xml</code></em>,
107 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
108108 </div>
109109 </div>
110110 <div class="refsect1">
131131 </div>
132132 </div>
133133 <div class="footer">
134 <hr>Generated by GTK-Doc V1.28</div>
134 <hr>Generated by GTK-Doc V1.29</div>
135135 </body>
136136 </html>
77 <link rel="up" href="ch01.html" title="Libvirt-gconfig">
88 <link rel="prev" href="GVirConfigNetwork.html" title="GVirConfigNetwork">
99 <link rel="next" href="GVirConfigSecret.html" title="GVirConfigSecret">
10 <meta name="generator" content="GTK-Doc V1.28 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.29 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
8383 </div>
8484 <div class="refsect1">
8585 <a name="GVirConfigNodeDevice.object-hierarchy"></a><h2>Object Hierarchy</h2>
86 <pre class="screen"> GObject
86 <pre class="screen"> <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a>
8787 <span class="lineart">╰──</span> <a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
8888 <span class="lineart">╰──</span> GVirConfigNodeDevice
8989 </pre>
102102 <div class="refsect2">
103103 <a name="gvir-config-node-device-new-from-xml"></a><h3>gvir_config_node_device_new_from_xml ()</h3>
104104 <pre class="programlisting"><a class="link" href="GVirConfigNodeDevice.html" title="GVirConfigNodeDevice"><span class="returnvalue">GVirConfigNodeDevice</span></a> *
105 gvir_config_node_device_new_from_xml (<em class="parameter"><code>const <span class="type">gchar</span> *xml</code></em>,
106 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
105 gvir_config_node_device_new_from_xml (<em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *xml</code></em>,
106 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
107107 </div>
108108 </div>
109109 <div class="refsect1">
130130 </div>
131131 </div>
132132 <div class="footer">
133 <hr>Generated by GTK-Doc V1.28</div>
133 <hr>Generated by GTK-Doc V1.29</div>
134134 </body>
135135 </html>
77 <link rel="up" href="ch01.html" title="Libvirt-gconfig">
88 <link rel="prev" href="ch01.html" title="Libvirt-gconfig">
99 <link rel="next" href="GVirConfigDomain.html" title="GVirConfigDomain">
10 <meta name="generator" content="GTK-Doc V1.28 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.29 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
6666 </tr>
6767 <tr>
6868 <td class="function_type">
69 <span class="returnvalue">gchar</span> *
69 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
7070 </td>
7171 <td class="function_name">
7272 <a class="link" href="GVirConfigObject.html#gvir-config-object-to-xml" title="gvir_config_object_to_xml ()">gvir_config_object_to_xml</a> <span class="c_punctuation">()</span>
7373 </td>
7474 </tr>
7575 <tr>
76 <td class="function_type">const <span class="returnvalue">gchar</span> *
76 <td class="function_type">const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
7777 </td>
7878 <td class="function_name">
7979 <a class="link" href="GVirConfigObject.html#gvir-config-object-get-schema" title="gvir_config_object_get_schema ()">gvir_config_object_get_schema</a> <span class="c_punctuation">()</span>
9898 <td class="property_flags">Read / Write / Construct Only</td>
9999 </tr>
100100 <tr>
101 <td class="property_type"><span class="type">gpointer</span></td>
101 <td class="property_type"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a></td>
102102 <td class="property_name"><a class="link" href="GVirConfigObject.html#GVirConfigObject--node" title="The “node” property">node</a></td>
103103 <td class="property_flags">Read / Write / Construct Only</td>
104104 </tr>
105105 <tr>
106106 <td class="property_type">
107 <span class="type">gchar</span> *</td>
107 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>
108108 <td class="property_name"><a class="link" href="GVirConfigObject.html#GVirConfigObject--schema" title="The “schema” property">schema</a></td>
109109 <td class="property_flags">Read / Write / Construct Only</td>
110110 </tr>
136136 </div>
137137 <div class="refsect1">
138138 <a name="GVirConfigObject.object-hierarchy"></a><h2>Object Hierarchy</h2>
139 <pre class="screen"> GObject
139 <pre class="screen"> <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a>
140140 <span class="lineart">╰──</span> GVirConfigObject
141141 <span class="lineart">├──</span> GVirConfigCapabilitiesCpuFeature
142142 <span class="lineart">├──</span> GVirConfigCapabilitiesCpu
150150 <span class="lineart">├──</span> GVirConfigCapabilitiesHost
151151 <span class="lineart">├──</span> GVirConfigCapabilitiesHostSecModel
152152 <span class="lineart">├──</span> GVirConfigDomainAddress
153 <span class="lineart">├──</span> GVirConfigDomainCapabilities
154 <span class="lineart">├──</span> GVirConfigDomainCapabilitiesOs
153155 <span class="lineart">├──</span> GVirConfigDomainDevice
154156 <span class="lineart">├──</span> GVirConfigDomainChardevSource
155157 <span class="lineart">├──</span> GVirConfigDomainClock
185187 <div class="refsect2">
186188 <a name="gvir-config-object-new"></a><h3>gvir_config_object_new ()</h3>
187189 <pre class="programlisting"><a class="link" href="GVirConfigObject.html" title="GVirConfigObject"><span class="returnvalue">GVirConfigObject</span></a> *
188 gvir_config_object_new (<em class="parameter"><code><span class="type">GType</span> type</code></em>,
190 gvir_config_object_new (<em class="parameter"><code><a href="/usr/share/gtk-doc/html/gobject/gobject-Type-Information.html#GType"><span class="type">GType</span></a> type</code></em>,
189191 <em class="parameter"><code>const <span class="type">char</span> *root_name</code></em>,
190192 <em class="parameter"><code>const <span class="type">char</span> *schema</code></em>);</pre>
191193 </div>
193195 <div class="refsect2">
194196 <a name="gvir-config-object-new-from-xml"></a><h3>gvir_config_object_new_from_xml ()</h3>
195197 <pre class="programlisting"><a class="link" href="GVirConfigObject.html" title="GVirConfigObject"><span class="returnvalue">GVirConfigObject</span></a> *
196 gvir_config_object_new_from_xml (<em class="parameter"><code><span class="type">GType</span> type</code></em>,
198 gvir_config_object_new_from_xml (<em class="parameter"><code><a href="/usr/share/gtk-doc/html/gobject/gobject-Type-Information.html#GType"><span class="type">GType</span></a> type</code></em>,
197199 <em class="parameter"><code>const <span class="type">char</span> *root_name</code></em>,
198200 <em class="parameter"><code>const <span class="type">char</span> *schema</code></em>,
199 <em class="parameter"><code>const <span class="type">gchar</span> *xml</code></em>,
200 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
201 <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *xml</code></em>,
202 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
201203 </div>
202204 <hr>
203205 <div class="refsect2">
204206 <a name="gvir-config-object-validate"></a><h3>gvir_config_object_validate ()</h3>
205207 <pre class="programlisting"><span class="returnvalue">void</span>
206208 gvir_config_object_validate (<em class="parameter"><code><a class="link" href="GVirConfigObject.html" title="GVirConfigObject"><span class="type">GVirConfigObject</span></a> *config</code></em>,
207 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
209 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
208210 </div>
209211 <hr>
210212 <div class="refsect2">
211213 <a name="gvir-config-object-to-xml"></a><h3>gvir_config_object_to_xml ()</h3>
212 <pre class="programlisting"><span class="returnvalue">gchar</span> *
214 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
213215 gvir_config_object_to_xml (<em class="parameter"><code><a class="link" href="GVirConfigObject.html" title="GVirConfigObject"><span class="type">GVirConfigObject</span></a> *config</code></em>);</pre>
214216 </div>
215217 <hr>
216218 <div class="refsect2">
217219 <a name="gvir-config-object-get-schema"></a><h3>gvir_config_object_get_schema ()</h3>
218 <pre class="programlisting">const <span class="returnvalue">gchar</span> *
220 <pre class="programlisting">const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
219221 gvir_config_object_get_schema (<em class="parameter"><code><a class="link" href="GVirConfigObject.html" title="GVirConfigObject"><span class="type">GVirConfigObject</span></a> *config</code></em>);</pre>
220222 </div>
221223 </div>
252254 <hr>
253255 <div class="refsect2">
254256 <a name="GVirConfigObject--node"></a><h3>The <code class="literal">“node”</code> property</h3>
255 <pre class="programlisting"> “node” <span class="type">gpointer</span></pre>
257 <pre class="programlisting"> “node” <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a></pre>
256258 <p>The XML node this config object corresponds to.</p>
257259 <p>Flags: Read / Write / Construct Only</p>
258260 </div>
259261 <hr>
260262 <div class="refsect2">
261263 <a name="GVirConfigObject--schema"></a><h3>The <code class="literal">“schema”</code> property</h3>
262 <pre class="programlisting"> “schema” <span class="type">gchar</span> *</pre>
264 <pre class="programlisting"> “schema” <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</pre>
263265 <p>The doc RNG schema.</p>
264266 <p>Flags: Read / Write / Construct Only</p>
265267 <p>Default value: NULL</p>
267269 </div>
268270 </div>
269271 <div class="footer">
270 <hr>Generated by GTK-Doc V1.28</div>
272 <hr>Generated by GTK-Doc V1.29</div>
271273 </body>
272274 </html>
77 <link rel="up" href="ch01.html" title="Libvirt-gconfig">
88 <link rel="prev" href="GVirConfigNodeDevice.html" title="GVirConfigNodeDevice">
99 <link rel="next" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool">
10 <meta name="generator" content="GTK-Doc V1.28 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.29 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
8383 </div>
8484 <div class="refsect1">
8585 <a name="GVirConfigSecret.object-hierarchy"></a><h2>Object Hierarchy</h2>
86 <pre class="screen"> GObject
86 <pre class="screen"> <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a>
8787 <span class="lineart">╰──</span> <a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
8888 <span class="lineart">╰──</span> GVirConfigSecret
8989 </pre>
102102 <div class="refsect2">
103103 <a name="gvir-config-secret-new-from-xml"></a><h3>gvir_config_secret_new_from_xml ()</h3>
104104 <pre class="programlisting"><a class="link" href="GVirConfigSecret.html" title="GVirConfigSecret"><span class="returnvalue">GVirConfigSecret</span></a> *
105 gvir_config_secret_new_from_xml (<em class="parameter"><code>const <span class="type">gchar</span> *xml</code></em>,
106 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
105 gvir_config_secret_new_from_xml (<em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *xml</code></em>,
106 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
107107 </div>
108108 </div>
109109 <div class="refsect1">
130130 </div>
131131 </div>
132132 <div class="footer">
133 <hr>Generated by GTK-Doc V1.28</div>
133 <hr>Generated by GTK-Doc V1.29</div>
134134 </body>
135135 </html>
77 <link rel="up" href="ch01.html" title="Libvirt-gconfig">
88 <link rel="prev" href="GVirConfigSecret.html" title="GVirConfigSecret">
99 <link rel="next" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol">
10 <meta name="generator" content="GTK-Doc V1.28 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.29 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
5757 </tr>
5858 <tr>
5959 <td class="function_type">
60 <span class="returnvalue">guint64</span>
60 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint64"><span class="returnvalue">guint64</span></a>
6161 </td>
6262 <td class="function_name">
6363 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-get-allocation" title="gvir_config_storage_pool_get_allocation ()">gvir_config_storage_pool_get_allocation</a> <span class="c_punctuation">()</span>
7373 </tr>
7474 <tr>
7575 <td class="function_type">
76 <span class="returnvalue">guint64</span>
76 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint64"><span class="returnvalue">guint64</span></a>
7777 </td>
7878 <td class="function_name">
7979 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-get-available" title="gvir_config_storage_pool_get_available ()">gvir_config_storage_pool_get_available</a> <span class="c_punctuation">()</span>
8989 </tr>
9090 <tr>
9191 <td class="function_type">
92 <span class="returnvalue">guint64</span>
92 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint64"><span class="returnvalue">guint64</span></a>
9393 </td>
9494 <td class="function_name">
9595 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-get-capacity" title="gvir_config_storage_pool_get_capacity ()">gvir_config_storage_pool_get_capacity</a> <span class="c_punctuation">()</span>
213213 </div>
214214 <div class="refsect1">
215215 <a name="GVirConfigStoragePool.object-hierarchy"></a><h2>Object Hierarchy</h2>
216 <pre class="screen"> GObject
216 <pre class="screen"> <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a>
217217 <span class="lineart">╰──</span> <a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
218218 <span class="lineart">╰──</span> GVirConfigStoragePool
219219 </pre>
232232 <div class="refsect2">
233233 <a name="gvir-config-storage-pool-new-from-xml"></a><h3>gvir_config_storage_pool_new_from_xml ()</h3>
234234 <pre class="programlisting"><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="returnvalue">GVirConfigStoragePool</span></a> *
235 gvir_config_storage_pool_new_from_xml (<em class="parameter"><code>const <span class="type">gchar</span> *xml</code></em>,
236 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
235 gvir_config_storage_pool_new_from_xml (<em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *xml</code></em>,
236 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
237237 </div>
238238 <hr>
239239 <div class="refsect2">
240240 <a name="gvir-config-storage-pool-get-allocation"></a><h3>gvir_config_storage_pool_get_allocation ()</h3>
241 <pre class="programlisting"><span class="returnvalue">guint64</span>
241 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint64"><span class="returnvalue">guint64</span></a>
242242 gvir_config_storage_pool_get_allocation
243243 (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>);</pre>
244244 <p>Gets the total storage allocation for the pool.</p>
268268 <pre class="programlisting"><span class="returnvalue">void</span>
269269 gvir_config_storage_pool_set_allocation
270270 (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>,
271 <em class="parameter"><code><span class="type">guint64</span> allocation</code></em>);</pre>
271 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint64"><span class="type">guint64</span></a> allocation</code></em>);</pre>
272272 </div>
273273 <hr>
274274 <div class="refsect2">
275275 <a name="gvir-config-storage-pool-get-available"></a><h3>gvir_config_storage_pool_get_available ()</h3>
276 <pre class="programlisting"><span class="returnvalue">guint64</span>
276 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint64"><span class="returnvalue">guint64</span></a>
277277 gvir_config_storage_pool_get_available
278278 (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>);</pre>
279279 <p>Gets the free space available for allocating new volumes in the pool.</p>
303303 <pre class="programlisting"><span class="returnvalue">void</span>
304304 gvir_config_storage_pool_set_available
305305 (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>,
306 <em class="parameter"><code><span class="type">guint64</span> available</code></em>);</pre>
306 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint64"><span class="type">guint64</span></a> available</code></em>);</pre>
307307 </div>
308308 <hr>
309309 <div class="refsect2">
310310 <a name="gvir-config-storage-pool-get-capacity"></a><h3>gvir_config_storage_pool_get_capacity ()</h3>
311 <pre class="programlisting"><span class="returnvalue">guint64</span>
311 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint64"><span class="returnvalue">guint64</span></a>
312312 gvir_config_storage_pool_get_capacity (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>);</pre>
313313 <p>Gets the total storage capacity for the pool.</p>
314314 <div class="refsect3">
336336 <a name="gvir-config-storage-pool-set-capacity"></a><h3>gvir_config_storage_pool_set_capacity ()</h3>
337337 <pre class="programlisting"><span class="returnvalue">void</span>
338338 gvir_config_storage_pool_set_capacity (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>,
339 <em class="parameter"><code><span class="type">guint64</span> capacity</code></em>);</pre>
339 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint64"><span class="type">guint64</span></a> capacity</code></em>);</pre>
340340 </div>
341341 <hr>
342342 <div class="refsect2">
654654 </div>
655655 </div>
656656 <div class="footer">
657 <hr>Generated by GTK-Doc V1.28</div>
657 <hr>Generated by GTK-Doc V1.29</div>
658658 </body>
659659 </html>
77 <link rel="up" href="ch01.html" title="Libvirt-gconfig">
88 <link rel="prev" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool">
99 <link rel="next" href="GVirConfigCapabilities.html" title="GVirConfigCapabilities">
10 <meta name="generator" content="GTK-Doc V1.28 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.29 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
123123 </div>
124124 <div class="refsect1">
125125 <a name="GVirConfigStorageVol.object-hierarchy"></a><h2>Object Hierarchy</h2>
126 <pre class="screen"> GObject
126 <pre class="screen"> <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a>
127127 <span class="lineart">╰──</span> <a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
128128 <span class="lineart">╰──</span> GVirConfigStorageVol
129129 </pre>
142142 <div class="refsect2">
143143 <a name="gvir-config-storage-vol-new-from-xml"></a><h3>gvir_config_storage_vol_new_from_xml ()</h3>
144144 <pre class="programlisting"><a class="link" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol"><span class="returnvalue">GVirConfigStorageVol</span></a> *
145 gvir_config_storage_vol_new_from_xml (<em class="parameter"><code>const <span class="type">gchar</span> *xml</code></em>,
146 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
145 gvir_config_storage_vol_new_from_xml (<em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *xml</code></em>,
146 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
147147 </div>
148148 <hr>
149149 <div class="refsect2">
151151 <pre class="programlisting"><span class="returnvalue">void</span>
152152 gvir_config_storage_vol_set_allocation
153153 (<em class="parameter"><code><a class="link" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol"><span class="type">GVirConfigStorageVol</span></a> *vol</code></em>,
154 <em class="parameter"><code><span class="type">guint64</span> allocation</code></em>);</pre>
154 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint64"><span class="type">guint64</span></a> allocation</code></em>);</pre>
155155 </div>
156156 <hr>
157157 <div class="refsect2">
181181 <a name="gvir-config-storage-vol-set-capacity"></a><h3>gvir_config_storage_vol_set_capacity ()</h3>
182182 <pre class="programlisting"><span class="returnvalue">void</span>
183183 gvir_config_storage_vol_set_capacity (<em class="parameter"><code><a class="link" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol"><span class="type">GVirConfigStorageVol</span></a> *vol</code></em>,
184 <em class="parameter"><code><span class="type">guint64</span> capacity</code></em>);</pre>
184 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint64"><span class="type">guint64</span></a> capacity</code></em>);</pre>
185185 </div>
186186 <hr>
187187 <div class="refsect2">
252252 </div>
253253 </div>
254254 <div class="footer">
255 <hr>Generated by GTK-Doc V1.28</div>
255 <hr>Generated by GTK-Doc V1.29</div>
256256 </body>
257257 </html>
66 <link rel="home" href="index.html" title="Libvirt-gconfig Reference Manual">
77 <link rel="up" href="index.html" title="Libvirt-gconfig Reference Manual">
88 <link rel="prev" href="api-index-full.html" title="API Index">
9 <meta name="generator" content="GTK-Doc V1.28 (XML mode)">
9 <meta name="generator" content="GTK-Doc V1.29 (XML mode)">
1010 <link rel="stylesheet" href="style.css" type="text/css">
1111 </head>
1212 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
5050 <dd class="glossdef"><p>Override the parsed C type with given type.</p></dd>
5151 </div>
5252 <div class="footer">
53 <hr>Generated by GTK-Doc V1.28</div>
53 <hr>Generated by GTK-Doc V1.29</div>
5454 </body>
5555 </html>
77 <link rel="up" href="index.html" title="Libvirt-gconfig Reference Manual">
88 <link rel="prev" href="object-tree.html" title="Object Hierarchy">
99 <link rel="next" href="annotation-glossary.html" title="Annotation Glossary">
10 <meta name="generator" content="GTK-Doc V1.28 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.29 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
234234 </dt>
235235 <dd></dd>
236236 <dt>
237 GVirConfigDomainCapabilities, struct in GVirConfigDomainCapabilities
238 </dt>
239 <dd></dd>
240 <dt>
241 GVirConfigDomainCapabilitiesClass, struct in GVirConfigDomainCapabilities
242 </dt>
243 <dd></dd>
244 <dt>
245 GVirConfigDomainCapabilitiesOs, struct in GVirConfigDomainCapabilitiesOs
246 </dt>
247 <dd></dd>
248 <dt>
249 GVirConfigDomainCapabilitiesOsClass, struct in GVirConfigDomainCapabilitiesOs
250 </dt>
251 <dd></dd>
252 <dt>
253 GVirConfigDomainCapabilitiesOsPrivate, struct in GVirConfigDomainCapabilitiesOs
254 </dt>
255 <dd></dd>
256 <dt>
257 GVirConfigDomainCapabilitiesPrivate, struct in GVirConfigDomainCapabilities
258 </dt>
259 <dd></dd>
260 <dt>
237261 GVirConfigDomainChannel, struct in GVirConfigDomainChannel
238262 </dt>
239263 <dd></dd>
742766 </dt>
743767 <dd></dd>
744768 <dt>
769 GVirConfigDomainOsFirmware, enum in GVirConfigDomainOs
770 </dt>
771 <dd></dd>
772 <dt>
745773 GVirConfigDomainOsPrivate, struct in GVirConfigDomainOs
746774 </dt>
747775 <dd></dd>
11621190 </dt>
11631191 <dd></dd>
11641192 <dt>
1193 GVirConfigStorageVolTargetFeatures, enum in GVirConfigStorageVolTarget
1194 </dt>
1195 <dd></dd>
1196 <dt>
11651197 GVirConfigStorageVolTargetPrivate, struct in GVirConfigStorageVolTarget
11661198 </dt>
11671199 <dd></dd>
14101442 </dt>
14111443 <dd></dd>
14121444 <dt>
1445 gvir_config_domain_capabilities_get_os, function in GVirConfigDomainCapabilities
1446 </dt>
1447 <dd></dd>
1448 <dt>
1449 gvir_config_domain_capabilities_new, function in GVirConfigDomainCapabilities
1450 </dt>
1451 <dd></dd>
1452 <dt>
1453 gvir_config_domain_capabilities_new_from_xml, function in GVirConfigDomainCapabilities
1454 </dt>
1455 <dd></dd>
1456 <dt>
1457 gvir_config_domain_capabilities_os_get_firmwares, function in GVirConfigDomainCapabilitiesOs
1458 </dt>
1459 <dd></dd>
1460 <dt>
14131461 gvir_config_domain_channel_get_target_name, function in GVirConfigDomainChannel
14141462 </dt>
14151463 <dd></dd>
23262374 </dt>
23272375 <dd></dd>
23282376 <dt>
2377 gvir_config_domain_os_get_firmware, function in GVirConfigDomainOs
2378 </dt>
2379 <dd></dd>
2380 <dt>
23292381 gvir_config_domain_os_get_machine, function in GVirConfigDomainOs
23302382 </dt>
23312383 <dd></dd>
23542406 </dt>
23552407 <dd></dd>
23562408 <dt>
2409 gvir_config_domain_os_set_firmware, function in GVirConfigDomainOs
2410 </dt>
2411 <dd></dd>
2412 <dt>
23572413 gvir_config_domain_os_set_init, function in GVirConfigDomainOs
23582414 </dt>
23592415 <dd></dd>
32553311 <dd></dd>
32563312 <dt>
32573313 gvir_config_storage_vol_target_set_compat, function in GVirConfigStorageVolTarget
3314 </dt>
3315 <dd></dd>
3316 <dt>
3317 gvir_config_storage_vol_target_set_features, function in GVirConfigStorageVolTarget
32583318 </dt>
32593319 <dd></dd>
32603320 <dt>
32953355 <dd></dd>
32963356 </div>
32973357 <div class="footer">
3298 <hr>Generated by GTK-Doc V1.28</div>
3358 <hr>Generated by GTK-Doc V1.29</div>
32993359 </body>
33003360 </html>
77 <link rel="up" href="index.html" title="Libvirt-gconfig Reference Manual">
88 <link rel="prev" href="index.html" title="Libvirt-gconfig Reference Manual">
99 <link rel="next" href="GVirConfigObject.html" title="GVirConfigObject">
10 <meta name="generator" content="GTK-Doc V1.28 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.29 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
5858 </dl></div>
5959 </div>
6060 <div class="footer">
61 <hr>Generated by GTK-Doc V1.28</div>
61 <hr>Generated by GTK-Doc V1.29</div>
6262 </body>
6363 </html>
55 <meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
66 <link rel="home" href="index.html" title="Libvirt-gconfig Reference Manual">
77 <link rel="next" href="ch01.html" title="Libvirt-gconfig">
8 <meta name="generator" content="GTK-Doc V1.28 (XML mode)">
8 <meta name="generator" content="GTK-Doc V1.29 (XML mode)">
99 <link rel="stylesheet" href="style.css" type="text/css">
1010 </head>
1111 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
5757 </dl></div>
5858 </div>
5959 <div class="footer">
60 <hr>Generated by GTK-Doc V1.28</div>
60 <hr>Generated by GTK-Doc V1.29</div>
6161 </body>
6262 </html>
77 <link rel="up" href="index.html" title="Libvirt-gconfig Reference Manual">
88 <link rel="prev" href="GVirConfigCapabilities.html" title="GVirConfigCapabilities">
99 <link rel="next" href="api-index-full.html" title="API Index">
10 <meta name="generator" content="GTK-Doc V1.28 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.29 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
2222 <div class="titlepage"><div><div><h1 class="title">
2323 <a name="object-tree"></a>Object Hierarchy</h1></div></div></div>
2424 <pre class="screen">
25 GObject
25 <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a>
2626 <span class="lineart">├──</span> <a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
2727 <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigCapabilitiesCpuFeature
2828 <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> GVirConfigDomainCpuFeature
4141 <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigDomainAddress
4242 <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigDomainAddressPci
4343 <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> GVirConfigDomainAddressUsb
44 <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigDomainCapabilities
45 <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigDomainCapabilitiesOs
4446 <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigDomainDevice
4547 <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigDomainChardev
4648 <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigDomainChannel
107109 </pre>
108110 </div>
109111 <div class="footer">
110 <hr>Generated by GTK-Doc V1.28</div>
112 <hr>Generated by GTK-Doc V1.29</div>
111113 </body>
112114 </html>
3535 $(LIBVIRT_LIBS) \
3636 $(GLIB2_LIBS) \
3737 $(GTHREAD2_LIBS) \
38 $(top_builddir)/libvirt-glib/libvirt-glib-1.0.la
38 $(top_builddir)/libvirt-glib/libvirt-glib-1.0.la \
39 $(top_builddir)/libvirt-gconfig/libvirt-gconfig-1.0.la \
40 $(top_builddir)/libvirt-gobject/libvirt-gobject-1.0.la \
41 $(NULL)
3942
4043 include $(top_srcdir)/gtk-doc.make
4144
0 # Makefile.in generated by automake 1.15.1 from Makefile.am.
0 # Makefile.in generated by automake 1.16.1 from Makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
1414 @SET_MAKE@
1515
1616 # -*- mode: makefile -*-
17 #
18 # gtk-doc.make - make rules for gtk-doc
19 # Copyright (C) 2003 James Henstridge
20 # 2004-2007 Damon Chaplin
21 # 2007-2017 Stefan Sauer
22 #
23 # This program is free software: you can redistribute it and/or modify
24 # it under the terms of the GNU General Public License as published by
25 # the Free Software Foundation, either version 3 of the License, or
26 # (at your option) any later version.
27 #
28 # This program is distributed in the hope that it will be useful,
29 # but WITHOUT ANY WARRANTY; without even the implied warranty of
30 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
31 # GNU General Public License for more details.
32 #
33 # You should have received a copy of the GNU General Public License
34 # along with this program. If not, see <http://www.gnu.org/licenses/>.
1735
1836 ####################################
1937 # Everything below here is generic #
95113 subdir = docs/libvirt-glib
96114 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
97115 am__aclocal_m4_deps = $(top_srcdir)/m4/glibtests.m4 \
98 $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
99 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
100 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
101 $(top_srcdir)/m4/manywarnings.m4 \
116 $(top_srcdir)/m4/gtk-doc.m4 $(top_srcdir)/m4/introspection.m4 \
117 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
118 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
119 $(top_srcdir)/m4/lt~obsolete.m4 \
120 $(top_srcdir)/m4/manywarnings.m4 $(top_srcdir)/m4/pkg.m4 \
102121 $(top_srcdir)/m4/virt-compile-warnings.m4 \
103 $(top_srcdir)/m4/virt-gettext.m4 $(top_srcdir)/m4/warnings.m4 \
122 $(top_srcdir)/m4/virt-nls.m4 $(top_srcdir)/m4/warnings.m4 \
104123 $(top_srcdir)/configure.ac
105124 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
106125 $(ACLOCAL_M4)
133152 $(top_srcdir)/gtk-doc.make
134153 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
135154 ACLOCAL = @ACLOCAL@
136 ALL_LINGUAS = @ALL_LINGUAS@
137155 AMTAR = @AMTAR@
138156 AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
139157 AR = @AR@
164182 EGREP = @EGREP@
165183 EXEEXT = @EXEEXT@
166184 FGREP = @FGREP@
167 GETTEXT_PACKAGE = @GETTEXT_PACKAGE@
168185 GIO2_CFLAGS = @GIO2_CFLAGS@
169186 GIO2_LIBS = @GIO2_LIBS@
170187 GLIB2_CFLAGS = @GLIB2_CFLAGS@
171188 GLIB2_LIBS = @GLIB2_LIBS@
172189 GLIB2_REQUIRED = @GLIB2_REQUIRED@
190 GLIB2_VERSION_SYMBOL = @GLIB2_VERSION_SYMBOL@
173191 GLIB_MKENUMS = @GLIB_MKENUMS@
174 GMSGFMT = @GMSGFMT@
175192 GOBJECT2_CFLAGS = @GOBJECT2_CFLAGS@
176193 GOBJECT2_LIBS = @GOBJECT2_LIBS@
177194 GREP = @GREP@
189206 INSTALL_PROGRAM = @INSTALL_PROGRAM@
190207 INSTALL_SCRIPT = @INSTALL_SCRIPT@
191208 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
192 INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
193 INTLTOOL_MERGE = @INTLTOOL_MERGE@
194 INTLTOOL_PERL = @INTLTOOL_PERL@
195 INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
196 INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@
197 INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@
198 INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@
199 INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@
200209 INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@
201210 INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@
202211 INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@
254263 SET_MAKE = @SET_MAKE@
255264 SHELL = @SHELL@
256265 STRIP = @STRIP@
257 USE_NLS = @USE_NLS@
258266 VAPIGEN = @VAPIGEN@
259267 VERSION = @VERSION@
260268 WARN_CFLAGS = @WARN_CFLAGS@
294302 install_sh = @install_sh@
295303 installed_test_metadir = @installed_test_metadir@
296304 installed_testdir = @installed_testdir@
297 intltool__v_merge_options_ = @intltool__v_merge_options_@
298 intltool__v_merge_options_0 = @intltool__v_merge_options_0@
299305 libdir = @libdir@
300306 libexecdir = @libexecdir@
301307 localedir = @localedir@
339345 $(LIBVIRT_LIBS) \
340346 $(GLIB2_LIBS) \
341347 $(GTHREAD2_LIBS) \
342 $(top_builddir)/libvirt-glib/libvirt-glib-1.0.la
348 $(top_builddir)/libvirt-glib/libvirt-glib-1.0.la \
349 $(top_builddir)/libvirt-gconfig/libvirt-gconfig-1.0.la \
350 $(top_builddir)/libvirt-gobject/libvirt-gobject-1.0.la \
351 $(NULL)
343352
344353 @GTK_DOC_USE_LIBTOOL_FALSE@GTKDOC_CC = $(CC) $(INCLUDES) $(GTKDOC_DEPS_CFLAGS) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
345354 @GTK_DOC_USE_LIBTOOL_TRUE@GTKDOC_CC = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(INCLUDES) $(GTKDOC_DEPS_CFLAGS) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
357366 TARGET_DIR = $(HTML_DIR)/$(DOC_MODULE)
358367 SETUP_FILES = \
359368 $(content_files) \
369 $(expand_content_files) \
360370 $(DOC_MAIN_SGML_FILE) \
361371 $(DOC_MODULE)-sections.txt \
362372 $(DOC_MODULE)-overrides.txt
378388 $(DOC_MODULE)-undeclared.txt \
379389 $(DOC_MODULE)-unused.txt
380390
381 CLEANFILES = $(SCANOBJ_FILES) $(REPORT_FILES) $(DOC_STAMPS)
382 @ENABLE_GTK_DOC_TRUE@@GTK_DOC_BUILD_HTML_FALSE@HTML_BUILD_STAMP =
383 @ENABLE_GTK_DOC_TRUE@@GTK_DOC_BUILD_HTML_TRUE@HTML_BUILD_STAMP = html-build.stamp
384 @ENABLE_GTK_DOC_TRUE@@GTK_DOC_BUILD_PDF_FALSE@PDF_BUILD_STAMP =
385 @ENABLE_GTK_DOC_TRUE@@GTK_DOC_BUILD_PDF_TRUE@PDF_BUILD_STAMP = pdf-build.stamp
391 CLEANFILES = $(SCANOBJ_FILES) $(REPORT_FILES) $(DOC_STAMPS) gtkdoc-check.test
392 @GTK_DOC_BUILD_HTML_FALSE@HTML_BUILD_STAMP =
393 @GTK_DOC_BUILD_HTML_TRUE@HTML_BUILD_STAMP = html-build.stamp
394 @GTK_DOC_BUILD_PDF_FALSE@PDF_BUILD_STAMP =
395 @GTK_DOC_BUILD_PDF_TRUE@PDF_BUILD_STAMP = pdf-build.stamp
396
397 #### setup ####
398 GTK_DOC_V_SETUP = $(GTK_DOC_V_SETUP_@AM_V@)
399 GTK_DOC_V_SETUP_ = $(GTK_DOC_V_SETUP_@AM_DEFAULT_V@)
400 GTK_DOC_V_SETUP_0 = @echo " DOC Preparing build";
401
402 #### scan ####
403 GTK_DOC_V_SCAN = $(GTK_DOC_V_SCAN_@AM_V@)
404 GTK_DOC_V_SCAN_ = $(GTK_DOC_V_SCAN_@AM_DEFAULT_V@)
405 GTK_DOC_V_SCAN_0 = @echo " DOC Scanning header files";
406 GTK_DOC_V_INTROSPECT = $(GTK_DOC_V_INTROSPECT_@AM_V@)
407 GTK_DOC_V_INTROSPECT_ = $(GTK_DOC_V_INTROSPECT_@AM_DEFAULT_V@)
408 GTK_DOC_V_INTROSPECT_0 = @echo " DOC Introspecting gobjects";
409
410 #### xml ####
411 GTK_DOC_V_XML = $(GTK_DOC_V_XML_@AM_V@)
412 GTK_DOC_V_XML_ = $(GTK_DOC_V_XML_@AM_DEFAULT_V@)
413 GTK_DOC_V_XML_0 = @echo " DOC Building XML";
414
415 #### html ####
416 GTK_DOC_V_HTML = $(GTK_DOC_V_HTML_@AM_V@)
417 GTK_DOC_V_HTML_ = $(GTK_DOC_V_HTML_@AM_DEFAULT_V@)
418 GTK_DOC_V_HTML_0 = @echo " DOC Building HTML";
419 GTK_DOC_V_XREF = $(GTK_DOC_V_XREF_@AM_V@)
420 GTK_DOC_V_XREF_ = $(GTK_DOC_V_XREF_@AM_DEFAULT_V@)
421 GTK_DOC_V_XREF_0 = @echo " DOC Fixing cross-references";
422
423 #### pdf ####
424 GTK_DOC_V_PDF = $(GTK_DOC_V_PDF_@AM_V@)
425 GTK_DOC_V_PDF_ = $(GTK_DOC_V_PDF_@AM_DEFAULT_V@)
426 GTK_DOC_V_PDF_0 = @echo " DOC Building PDF";
386427 all: all-am
387428
388429 .SUFFIXES:
403444 *config.status*) \
404445 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
405446 *) \
406 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
407 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
447 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
448 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
408449 esac;
409450 $(top_srcdir)/gtk-doc.make $(am__empty):
410451
431472 cscope cscopelist:
432473
433474
434 distdir: $(DISTFILES)
475 distdir: $(BUILT_SOURCES)
476 $(MAKE) $(AM_MAKEFLAGS) distdir-am
477
478 distdir-am: $(DISTFILES)
435479 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
436480 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
437481 list='$(DISTFILES)'; \
466510 dist-hook
467511 check-am: all-am
468512 check: check-am
513 @ENABLE_GTK_DOC_FALSE@all-local:
469514 all-am: Makefile all-local
470515 installdirs:
471516 install: install-am
585630 .PRECIOUS: Makefile
586631
587632
588 @ENABLE_GTK_DOC_TRUE@all-local: $(HTML_BUILD_STAMP) $(PDF_BUILD_STAMP)
589 @ENABLE_GTK_DOC_FALSE@all-local:
633 gtkdoc-check.test: Makefile
634 $(AM_V_GEN)echo "#!/bin/sh -e" > $@; \
635 echo "$(GTKDOC_CHECK_PATH) || exit 1" >> $@; \
636 chmod +x $@
637
638 all-gtk-doc: $(HTML_BUILD_STAMP) $(PDF_BUILD_STAMP)
639 .PHONY: all-gtk-doc
640
641 @ENABLE_GTK_DOC_TRUE@all-local: all-gtk-doc
590642
591643 docs: $(HTML_BUILD_STAMP) $(PDF_BUILD_STAMP)
592644
593645 $(REPORT_FILES): sgml-build.stamp
594646
595 #### setup ####
596
597647 setup-build.stamp:
598 -@if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \
599 echo ' DOC Preparing build'; \
600 files=`echo $(SETUP_FILES) $(expand_content_files) $(DOC_MODULE).types`; \
601 if test "x$$files" != "x" ; then \
602 for file in $$files ; do \
603 test -f $(abs_srcdir)/$$file && \
604 cp -pu $(abs_srcdir)/$$file $(abs_builddir)/ || true; \
605 done; \
606 fi; \
648 -$(GTK_DOC_V_SETUP)if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \
649 files=`echo $(SETUP_FILES) $(DOC_MODULE).types`; \
650 if test "x$$files" != "x" ; then \
651 for file in $$files ; do \
652 destdir=`dirname $(abs_builddir)/$$file`; \
653 test -d "$$destdir" || mkdir -p "$$destdir"; \
654 test -f $(abs_srcdir)/$$file && \
655 cp -pf $(abs_srcdir)/$$file $(abs_builddir)/$$file || true; \
656 done; \
657 fi; \
607658 fi
608 @touch setup-build.stamp
609
610 #### scan ####
611
612 scan-build.stamp: $(HFILE_GLOB) $(CFILE_GLOB)
613 @echo ' DOC Scanning header files'
614 @_source_dir='' ; \
659 $(AM_V_at)touch setup-build.stamp
660
661 scan-build.stamp: setup-build.stamp $(HFILE_GLOB) $(CFILE_GLOB)
662 $(GTK_DOC_V_SCAN)_source_dir='' ; \
615663 for i in $(DOC_SOURCE_DIR) ; do \
616 _source_dir="$${_source_dir} --source-dir=$$i" ; \
664 _source_dir="$${_source_dir} --source-dir=$$i" ; \
617665 done ; \
618666 gtkdoc-scan --module=$(DOC_MODULE) --ignore-headers="$(IGNORE_HFILES)" $${_source_dir} $(SCAN_OPTIONS) $(EXTRA_HFILES)
619 @if grep -l '^..*$$' $(DOC_MODULE).types > /dev/null 2>&1 ; then \
620 echo " DOC Introspecting gobjects"; \
621 scanobj_options=""; \
622 gtkdoc-scangobj 2>&1 --help | grep >/dev/null "\-\-verbose"; \
623 if test "$(?)" = "0"; then \
624 if test "x$(V)" = "x1"; then \
625 scanobj_options="--verbose"; \
626 fi; \
667 $(GTK_DOC_V_INTROSPECT)if grep -l '^..*$$' $(DOC_MODULE).types > /dev/null 2>&1 ; then \
668 scanobj_options=""; \
669 gtkdoc-scangobj 2>&1 --help | grep >/dev/null "\-\-verbose"; \
670 if test "$$?" = "0"; then \
671 if test "x$(V)" = "x1"; then \
672 scanobj_options="--verbose"; \
627673 fi; \
628 CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" RUN="$(GTKDOC_RUN)" CFLAGS="$(GTKDOC_CFLAGS) $(CFLAGS)" LDFLAGS="$(GTKDOC_LIBS) $(LDFLAGS)" \
629 gtkdoc-scangobj $(SCANGOBJ_OPTIONS) $$scanobj_options --module=$(DOC_MODULE); \
674 fi; \
675 CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" RUN="$(GTKDOC_RUN)" CFLAGS="$(GTKDOC_CFLAGS) $(CFLAGS)" LDFLAGS="$(GTKDOC_LIBS) $(LDFLAGS)" \
676 gtkdoc-scangobj $(SCANGOBJ_OPTIONS) $$scanobj_options --module=$(DOC_MODULE); \
630677 else \
631 for i in $(SCANOBJ_FILES) ; do \
632 test -f $$i || touch $$i ; \
633 done \
678 for i in $(SCANOBJ_FILES) ; do \
679 test -f $$i || touch $$i ; \
680 done \
634681 fi
635 @touch scan-build.stamp
682 $(AM_V_at)touch scan-build.stamp
636683
637684 $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt: scan-build.stamp
638685 @true
639686
640 #### xml ####
641
642 sgml-build.stamp: setup-build.stamp $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt $(expand_content_files)
643 @echo ' DOC Building XML'
644 @_source_dir='' ; \
687 sgml-build.stamp: setup-build.stamp $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(HFILE_GLOB) $(CFILE_GLOB) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt $(expand_content_files) xml/gtkdocentities.ent
688 $(GTK_DOC_V_XML)_source_dir='' ; \
645689 for i in $(DOC_SOURCE_DIR) ; do \
646 _source_dir="$${_source_dir} --source-dir=$$i" ; \
690 _source_dir="$${_source_dir} --source-dir=$$i" ; \
647691 done ; \
648692 gtkdoc-mkdb --module=$(DOC_MODULE) --output-format=xml --expand-content-files="$(expand_content_files)" --main-sgml-file=$(DOC_MAIN_SGML_FILE) $${_source_dir} $(MKDB_OPTIONS)
649 @touch sgml-build.stamp
693 $(AM_V_at)touch sgml-build.stamp
650694
651695 sgml.stamp: sgml-build.stamp
652696 @true
653697
654 #### html ####
655
656 html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files)
657 @echo ' DOC Building HTML'
658 @rm -rf html
659 @mkdir html
660 @mkhtml_options=""; \
698 $(DOC_MAIN_SGML_FILE): sgml-build.stamp
699 @true
700
701 xml/gtkdocentities.ent: Makefile
702 $(GTK_DOC_V_XML)$(MKDIR_P) $(@D) && ( \
703 echo "<!ENTITY package \"$(PACKAGE)\">"; \
704 echo "<!ENTITY package_bugreport \"$(PACKAGE_BUGREPORT)\">"; \
705 echo "<!ENTITY package_name \"$(PACKAGE_NAME)\">"; \
706 echo "<!ENTITY package_string \"$(PACKAGE_STRING)\">"; \
707 echo "<!ENTITY package_tarname \"$(PACKAGE_TARNAME)\">"; \
708 echo "<!ENTITY package_url \"$(PACKAGE_URL)\">"; \
709 echo "<!ENTITY package_version \"$(PACKAGE_VERSION)\">"; \
710 ) > $@
711
712 html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) $(expand_content_files)
713 $(GTK_DOC_V_HTML)rm -rf html && mkdir html && \
714 mkhtml_options=""; \
661715 gtkdoc-mkhtml 2>&1 --help | grep >/dev/null "\-\-verbose"; \
662 if test "$(?)" = "0"; then \
716 if test "$$?" = "0"; then \
663717 if test "x$(V)" = "x1"; then \
664718 mkhtml_options="$$mkhtml_options --verbose"; \
665719 fi; \
666720 fi; \
667721 gtkdoc-mkhtml 2>&1 --help | grep >/dev/null "\-\-path"; \
668 if test "$(?)" = "0"; then \
722 if test "$$?" = "0"; then \
669723 mkhtml_options="$$mkhtml_options --path=\"$(abs_srcdir)\""; \
670724 fi; \
671725 cd html && gtkdoc-mkhtml $$mkhtml_options $(MKHTML_OPTIONS) $(DOC_MODULE) ../$(DOC_MAIN_SGML_FILE)
672726 -@test "x$(HTML_IMAGES)" = "x" || \
673727 for file in $(HTML_IMAGES) ; do \
674 if test -f $(abs_srcdir)/$$file ; then \
675 cp $(abs_srcdir)/$$file $(abs_builddir)/html; \
676 fi; \
677 if test -f $(abs_builddir)/$$file ; then \
678 cp $(abs_builddir)/$$file $(abs_builddir)/html; \
679 fi; \
728 test -f $(abs_srcdir)/$$file && cp $(abs_srcdir)/$$file $(abs_builddir)/html; \
729 test -f $(abs_builddir)/$$file && cp $(abs_builddir)/$$file $(abs_builddir)/html; \
730 test -f $$file && cp $$file $(abs_builddir)/html; \
680731 done;
681 @echo ' DOC Fixing cross-references'
682 @gtkdoc-fixxref --module=$(DOC_MODULE) --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS)
683 @touch html-build.stamp
684
685 #### pdf ####
686
687 pdf-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files)
688 @echo ' DOC Building PDF'
689 @rm -f $(DOC_MODULE).pdf
690 @mkpdf_options=""; \
732 $(GTK_DOC_V_XREF)gtkdoc-fixxref --module=$(DOC_MODULE) --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS)
733 $(AM_V_at)touch html-build.stamp
734
735 pdf-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) $(expand_content_files)
736 $(GTK_DOC_V_PDF)rm -f $(DOC_MODULE).pdf && \
737 mkpdf_options=""; \
691738 gtkdoc-mkpdf 2>&1 --help | grep >/dev/null "\-\-verbose"; \
692 if test "$(?)" = "0"; then \
739 if test "$$?" = "0"; then \
693740 if test "x$(V)" = "x1"; then \
694741 mkpdf_options="$$mkpdf_options --verbose"; \
695742 fi; \
704751 done; \
705752 fi; \
706753 gtkdoc-mkpdf --path="$(abs_srcdir)" $$mkpdf_options $(DOC_MODULE) $(DOC_MAIN_SGML_FILE) $(MKPDF_OPTIONS)
707 @touch pdf-build.stamp
754 $(AM_V_at)touch pdf-build.stamp
708755
709756 ##############
710757
711758 clean-local:
712759 @rm -f *~ *.bak
713760 @rm -rf .libs
761 @if echo $(SCAN_OPTIONS) | grep -q "\-\-rebuild-types" ; then \
762 rm -f $(DOC_MODULE).types; \
763 fi
764 @if echo $(SCAN_OPTIONS) | grep -q "\-\-rebuild-sections" ; then \
765 rm -f $(DOC_MODULE)-sections.txt; \
766 fi
714767
715768 distclean-local:
716769 @rm -rf xml html $(REPORT_FILES) $(DOC_MODULE).pdf \
717770 $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt
718771 @if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \
719 rm -f $(SETUP_FILES) $(expand_content_files) $(DOC_MODULE).types; \
772 rm -f $(SETUP_FILES) $(DOC_MODULE).types; \
720773 fi
721774
722 maintainer-clean-local: clean
775 maintainer-clean-local:
723776 @rm -rf xml html
724777
725778 install-data-local:
755808 #
756809 # Require gtk-doc when making dist
757810 #
758 @ENABLE_GTK_DOC_TRUE@dist-check-gtkdoc:
759 @ENABLE_GTK_DOC_FALSE@dist-check-gtkdoc:
760 @ENABLE_GTK_DOC_FALSE@ @echo "*** gtk-doc must be installed and enabled in order to make dist"
761 @ENABLE_GTK_DOC_FALSE@ @false
762
763 dist-hook: dist-check-gtkdoc dist-hook-local
811 @HAVE_GTK_DOC_TRUE@dist-check-gtkdoc: docs
812 @HAVE_GTK_DOC_FALSE@dist-check-gtkdoc:
813 @HAVE_GTK_DOC_FALSE@ @echo "*** gtk-doc is needed to run 'make dist'. ***"
814 @HAVE_GTK_DOC_FALSE@ @echo "*** gtk-doc was not found when 'configure' ran. ***"
815 @HAVE_GTK_DOC_FALSE@ @echo "*** please install gtk-doc and rerun 'configure'. ***"
816 @HAVE_GTK_DOC_FALSE@ @false
817
818 dist-hook: dist-check-gtkdoc all-gtk-doc dist-hook-local
764819 @mkdir $(distdir)/html
765820 @cp ./html/* $(distdir)/html
766821 @-cp ./$(DOC_MODULE).pdf $(distdir)/
77 <link rel="up" href="ch01.html" title="API Reference">
88 <link rel="prev" href="Libvirt-glib-Library-initialization.html" title="Library initialization">
99 <link rel="next" href="Libvirt-glib-Event-loop.html" title="Event loop">
10 <meta name="generator" content="GTK-Doc V1.28 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.29 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
5050 <tbody>
5151 <tr>
5252 <td class="function_type">
53 <span class="returnvalue">GError</span> *
53 <a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="returnvalue">GError</span></a> *
5454 </td>
5555 <td class="function_name">
5656 <a class="link" href="Libvirt-glib-Error-reporting.html#gvir-error-new" title="gvir_error_new ()">gvir_error_new</a> <span class="c_punctuation">()</span>
5858 </tr>
5959 <tr>
6060 <td class="function_type">
61 <span class="returnvalue">GError</span> *
61 <a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="returnvalue">GError</span></a> *
6262 </td>
6363 <td class="function_name">
6464 <a class="link" href="Libvirt-glib-Error-reporting.html#gvir-error-new-literal" title="gvir_error_new_literal ()">gvir_error_new_literal</a> <span class="c_punctuation">()</span>
6666 </tr>
6767 <tr>
6868 <td class="function_type">
69 <span class="returnvalue">GError</span> *
69 <a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="returnvalue">GError</span></a> *
7070 </td>
7171 <td class="function_name">
7272 <a class="link" href="Libvirt-glib-Error-reporting.html#gvir-error-new-valist" title="gvir_error_new_valist ()">gvir_error_new_valist</a> <span class="c_punctuation">()</span>
155155 <span class="cbracket">{</span>
156156 <span class="normal"> </span><span class="keyword">if</span><span class="normal"> </span><span class="symbol">(</span><span class="function">virDomainCreate</span><span class="symbol">(</span><span class="normal">conn</span><span class="symbol">,</span><span class="normal"> xml</span><span class="symbol">,</span><span class="normal"> </span><span class="number">0</span><span class="symbol">)</span><span class="normal"> </span><span class="symbol">&amp;</span><span class="normal">lt</span><span class="symbol">;</span><span class="normal"> </span><span class="number">0</span><span class="symbol">)</span><span class="normal"> </span><span class="cbracket">{</span>
157157 <span class="normal"> </span><span class="function"><a href="Libvirt-glib-Error-reporting.html#gvir-set-error-literal">gvir_set_error_literal</a></span><span class="symbol">(</span><span class="normal">error</span><span class="symbol">,</span><span class="normal"> </span><span class="string">"Unable to start virtual machine"</span><span class="symbol">);</span>
158 <span class="normal"> </span><span class="keyword">return</span><span class="normal"> FALSE</span><span class="symbol">;</span>
158 <span class="normal"> </span><span class="keyword">return</span><span class="normal"> <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS">FALSE</a></span><span class="symbol">;</span>
159159 <span class="normal"> </span><span class="cbracket">}</span>
160160
161 <span class="normal"> </span><span class="keyword">return</span><span class="normal"> TRUE</span><span class="symbol">;</span>
161 <span class="normal"> </span><span class="keyword">return</span><span class="normal"> <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS">TRUE</a></span><span class="symbol">;</span>
162162 <span class="cbracket">}</span></pre></td>
163163 </tr>
164164 </tbody>
172172 <a name="Libvirt-glib-Error-reporting.functions_details"></a><h2>Functions</h2>
173173 <div class="refsect2">
174174 <a name="gvir-error-new"></a><h3>gvir_error_new ()</h3>
175 <pre class="programlisting"><span class="returnvalue">GError</span> *
176 gvir_error_new (<em class="parameter"><code><span class="type">GQuark</span> domain</code></em>,
177 <em class="parameter"><code><span class="type">gint</span> code</code></em>,
178 <em class="parameter"><code>const <span class="type">gchar</span> *format</code></em>,
175 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="returnvalue">GError</span></a> *
176 gvir_error_new (<em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a> domain</code></em>,
177 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> code</code></em>,
178 <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *format</code></em>,
179179 <em class="parameter"><code>...</code></em>);</pre>
180 <p>Creates a new <span class="type">GError</span> with the given <em class="parameter"><code>domain</code></em>
180 <p>Creates a new <a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> with the given <em class="parameter"><code>domain</code></em>
181181 and <em class="parameter"><code>code</code></em>
182182 ,
183183 and a message formatted with <em class="parameter"><code>format</code></em>
216216 </div>
217217 <div class="refsect3">
218218 <a name="gvir-error-new.returns"></a><h4>Returns</h4>
219 <p> a new <span class="type">GError</span></p>
219 <p> a new <a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a></p>
220220 </div>
221221 </div>
222222 <hr>
223223 <div class="refsect2">
224224 <a name="gvir-error-new-literal"></a><h3>gvir_error_new_literal ()</h3>
225 <pre class="programlisting"><span class="returnvalue">GError</span> *
226 gvir_error_new_literal (<em class="parameter"><code><span class="type">GQuark</span> domain</code></em>,
227 <em class="parameter"><code><span class="type">gint</span> code</code></em>,
228 <em class="parameter"><code>const <span class="type">gchar</span> *message</code></em>);</pre>
229 <p>Creates a new <span class="type">GError</span>; unlike <a class="link" href="Libvirt-glib-Error-reporting.html#gvir-error-new" title="gvir_error_new ()"><code class="function">gvir_error_new()</code></a>, <em class="parameter"><code>message</code></em>
225 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="returnvalue">GError</span></a> *
226 gvir_error_new_literal (<em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a> domain</code></em>,
227 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> code</code></em>,
228 <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *message</code></em>);</pre>
229 <p>Creates a new <a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a>; unlike <a class="link" href="Libvirt-glib-Error-reporting.html#gvir-error-new" title="gvir_error_new ()"><code class="function">gvir_error_new()</code></a>, <em class="parameter"><code>message</code></em>
230230 is
231231 not a <code class="function">printf()</code>-style format string. Use this function if
232232 <em class="parameter"><code>message</code></em>
261261 </div>
262262 <div class="refsect3">
263263 <a name="gvir-error-new-literal.returns"></a><h4>Returns</h4>
264 <p> a new <span class="type">GError</span></p>
264 <p> a new <a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a></p>
265265 </div>
266266 </div>
267267 <hr>
268268 <div class="refsect2">
269269 <a name="gvir-error-new-valist"></a><h3>gvir_error_new_valist ()</h3>
270 <pre class="programlisting"><span class="returnvalue">GError</span> *
271 gvir_error_new_valist (<em class="parameter"><code><span class="type">GQuark</span> domain</code></em>,
272 <em class="parameter"><code><span class="type">gint</span> code</code></em>,
273 <em class="parameter"><code>const <span class="type">gchar</span> *format</code></em>,
270 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="returnvalue">GError</span></a> *
271 gvir_error_new_valist (<em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a> domain</code></em>,
272 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> code</code></em>,
273 <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *format</code></em>,
274274 <em class="parameter"><code><span class="type">va_list</span> args</code></em>);</pre>
275 <p>Creates a new <span class="type">GError</span> with the given <em class="parameter"><code>domain</code></em>
275 <p>Creates a new <a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> with the given <em class="parameter"><code>domain</code></em>
276276 and <em class="parameter"><code>code</code></em>
277277 ,
278278 and a message formatted with <em class="parameter"><code>format</code></em>
311311 </div>
312312 <div class="refsect3">
313313 <a name="gvir-error-new-valist.returns"></a><h4>Returns</h4>
314 <p> a new <span class="type">GError</span></p>
314 <p> a new <a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a></p>
315315 </div>
316316 </div>
317317 <hr>
318318 <div class="refsect2">
319319 <a name="gvir-set-error"></a><h3>gvir_set_error ()</h3>
320320 <pre class="programlisting"><span class="returnvalue">void</span>
321 gvir_set_error (<em class="parameter"><code><span class="type">GError</span> **error</code></em>,
322 <em class="parameter"><code><span class="type">GQuark</span> domain</code></em>,
323 <em class="parameter"><code><span class="type">gint</span> code</code></em>,
324 <em class="parameter"><code>const <span class="type">gchar</span> *format</code></em>,
321 gvir_set_error (<em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>,
322 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a> domain</code></em>,
323 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> code</code></em>,
324 <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *format</code></em>,
325325 <em class="parameter"><code>...</code></em>);</pre>
326326 <p>If <em class="parameter"><code>error</code></em>
327327 is NULL this does nothing. Otherwise it
328 creates a new <span class="type">GError</span> with the given <em class="parameter"><code>domain</code></em>
328 creates a new <a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> with the given <em class="parameter"><code>domain</code></em>
329329 and <em class="parameter"><code>code</code></em>
330330 ,
331331 and a message formatted with <em class="parameter"><code>format</code></em>
374374 <div class="refsect2">
375375 <a name="gvir-set-error-literal"></a><h3>gvir_set_error_literal ()</h3>
376376 <pre class="programlisting"><span class="returnvalue">void</span>
377 gvir_set_error_literal (<em class="parameter"><code><span class="type">GError</span> **error</code></em>,
378 <em class="parameter"><code><span class="type">GQuark</span> domain</code></em>,
379 <em class="parameter"><code><span class="type">gint</span> code</code></em>,
380 <em class="parameter"><code>const <span class="type">gchar</span> *message</code></em>);</pre>
377 gvir_set_error_literal (<em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>,
378 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a> domain</code></em>,
379 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> code</code></em>,
380 <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *message</code></em>);</pre>
381381 <p>If <em class="parameter"><code>error</code></em>
382382 is NULL this does nothing. Otherwise it
383 creates a new <span class="type">GError</span> and stores it in <em class="parameter"><code>error</code></em>
383 creates a new <a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> and stores it in <em class="parameter"><code>error</code></em>
384384 ; unlike
385385 <a class="link" href="Libvirt-glib-Error-reporting.html#gvir-set-error" title="gvir_set_error ()"><code class="function">gvir_set_error()</code></a>, <em class="parameter"><code>message</code></em>
386386 is not a <code class="function">printf()</code>-style
425425 <div class="refsect2">
426426 <a name="gvir-set-error-valist"></a><h3>gvir_set_error_valist ()</h3>
427427 <pre class="programlisting"><span class="returnvalue">void</span>
428 gvir_set_error_valist (<em class="parameter"><code><span class="type">GError</span> **error</code></em>,
429 <em class="parameter"><code><span class="type">GQuark</span> domain</code></em>,
430 <em class="parameter"><code><span class="type">gint</span> code</code></em>,
431 <em class="parameter"><code>const <span class="type">gchar</span> *format</code></em>,
428 gvir_set_error_valist (<em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>,
429 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a> domain</code></em>,
430 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> code</code></em>,
431 <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *format</code></em>,
432432 <em class="parameter"><code><span class="type">va_list</span> args</code></em>);</pre>
433433 <p>If <em class="parameter"><code>error</code></em>
434434 is NULL this does nothing. Otherwise it
435 creates a new <span class="type">GError</span> with the given <em class="parameter"><code>domain</code></em>
435 creates a new <a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> with the given <em class="parameter"><code>domain</code></em>
436436 and <em class="parameter"><code>code</code></em>
437437 ,
438438 and a message formatted with <em class="parameter"><code>format</code></em>
481481 <div class="refsect2">
482482 <a name="gvir-critical"></a><h3>gvir_critical ()</h3>
483483 <pre class="programlisting"><span class="returnvalue">void</span>
484 gvir_critical (<em class="parameter"><code>const <span class="type">gchar</span> *format</code></em>,
484 gvir_critical (<em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *format</code></em>,
485485 <em class="parameter"><code>...</code></em>);</pre>
486486 </div>
487487 <hr>
488488 <div class="refsect2">
489489 <a name="gvir-warning"></a><h3>gvir_warning ()</h3>
490490 <pre class="programlisting"><span class="returnvalue">void</span>
491 gvir_warning (<em class="parameter"><code>const <span class="type">gchar</span> *format</code></em>,
491 gvir_warning (<em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *format</code></em>,
492492 <em class="parameter"><code>...</code></em>);</pre>
493493 </div>
494494 </div>
497497 </div>
498498 </div>
499499 <div class="footer">
500 <hr>Generated by GTK-Doc V1.28</div>
500 <hr>Generated by GTK-Doc V1.29</div>
501501 </body>
502502 </html>
77 <link rel="up" href="ch01.html" title="API Reference">
88 <link rel="prev" href="Libvirt-glib-Error-reporting.html" title="Error reporting">
99 <link rel="next" href="object-tree.html" title="Object Hierarchy">
10 <meta name="generator" content="GTK-Doc V1.28 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.29 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
7272 <p>To enable use of the GMain event loop glue, the <code class="code"><a class="link" href="Libvirt-glib-Event-loop.html#gvir-event-register" title="gvir_event_register ()"><code class="function">gvir_event_register()</code></a></code>
7373 should be invoked. Once this is done, it is mandatory to have the default
7474 GMain event loop run by a thread in the application, usually the primary
75 thread, eg by using <code class="code"><a href="/usr/share/gtk-doc/html/gtk3/gtk3-General.html#gtk-main"><code class="function">gtk_main()</code></a></code> or <code class="code"><code class="function">g_application_run()</code></code></p>
75 thread, eg by using <code class="code"><a href="/usr/share/gtk-doc/html/gtk3/gtk3-General.html#gtk-main"><code class="function">gtk_main()</code></a></code> or <code class="code"><a href="/usr/share/gtk-doc/html/gio/GApplication.html#g-application-run"><code class="function">g_application_run()</code></a></code></p>
7676 <div class="example">
7777 <a name="id-1.2.4.6.4"></a><p class="title"><b>Example 3. Registering for events with a GTK application</b></p>
7878 <div class="example-contents">
115115 8</pre></td>
116116 <td class="listing_code"><pre class="programlisting"><span class="type">int</span><span class="normal"> </span><span class="function">main</span><span class="symbol">(</span><span class="type">int</span><span class="normal"> argc</span><span class="symbol">,</span><span class="normal"> </span><span class="type">char</span><span class="normal"> </span><span class="symbol">**</span><span class="normal">argv</span><span class="symbol">)</span><span class="normal"> </span><span class="cbracket">{</span>
117117 <span class="normal"> </span><span class="symbol">...</span><span class="normal">setup</span><span class="symbol">...</span>
118 <span class="normal"> </span><span class="usertype">GApplication</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">app </span><span class="symbol">=</span><span class="normal"> </span><span class="symbol">...</span><span class="normal">create some impl </span><span class="usertype">of</span><span class="normal"> GApplication</span><span class="symbol">...</span>
118 <span class="normal"> </span><span class="usertype">GApplication</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">app </span><span class="symbol">=</span><span class="normal"> </span><span class="symbol">...</span><span class="normal">create some impl </span><span class="usertype">of</span><span class="normal"> <a href="/usr/share/gtk-doc/html/gio/GApplication.html#GApplication-struct">GApplication</a></span><span class="symbol">...</span>
119119 <span class="normal"> </span><span class="function"><a href="Libvirt-glib-Event-loop.html#gvir-event-register">gvir_event_register</a></span><span class="symbol">();</span>
120120 <span class="normal"> </span><span class="symbol">...</span><span class="usertype">more</span><span class="normal"> setup</span><span class="symbol">...</span>
121 <span class="normal"> </span><span class="function">g_application_run</span><span class="symbol">(</span><span class="normal">app</span><span class="symbol">);</span>
121 <span class="normal"> </span><span class="function"><a href="/usr/share/gtk-doc/html/gio/GApplication.html#g-application-run">g_application_run</a></span><span class="symbol">(</span><span class="normal">app</span><span class="symbol">);</span>
122122 <span class="normal"> </span><span class="keyword">return</span><span class="normal"> </span><span class="number">0</span><span class="symbol">;</span>
123123 <span class="cbracket">}</span></pre></td>
124124 </tr>
154154 </div>
155155 </div>
156156 <div class="footer">
157 <hr>Generated by GTK-Doc V1.28</div>
157 <hr>Generated by GTK-Doc V1.29</div>
158158 </body>
159159 </html>
77 <link rel="up" href="ch01.html" title="API Reference">
88 <link rel="prev" href="ch01.html" title="API Reference">
99 <link rel="next" href="Libvirt-glib-Error-reporting.html" title="Error reporting">
10 <meta name="generator" content="GTK-Doc V1.28 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.29 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
5858 </tr>
5959 <tr>
6060 <td class="function_type">
61 <span class="returnvalue">gboolean</span>
61 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
6262 </td>
6363 <td class="function_name">
6464 <a class="link" href="Libvirt-glib-Library-initialization.html#gvir-init-check" title="gvir_init_check ()">gvir_init_check</a> <span class="c_punctuation">()</span>
152152 <td class="parameter_name"><p>argv</p></td>
153153 <td class="parameter_description">
154154 <p>Address of the</p>
155 <em class="parameter"><code>argv</code></em> parameter of <code class="function">main()</code>, or <code class="literal">NULL</code>. Any options
155 <em class="parameter"><code>argv</code></em> parameter of <code class="function">main()</code>, or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. Any options
156156 <p> understood by GTK+ are stripped before return. </p>
157157 </td>
158158 <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=argc][<acronym title="Parameter for input and for returning results. Default is transfer full."><span class="acronym">inout</span></acronym>][<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
164164 <hr>
165165 <div class="refsect2">
166166 <a name="gvir-init-check"></a><h3>gvir_init_check ()</h3>
167 <pre class="programlisting"><span class="returnvalue">gboolean</span>
167 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
168168 gvir_init_check (<em class="parameter"><code><span class="type">int</span> *argc</code></em>,
169169 <em class="parameter"><code><span class="type">char</span> ***argv</code></em>,
170 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
170 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
171171 <p>This function does the same work as <a class="link" href="Libvirt-glib-Library-initialization.html#gvir-init" title="gvir_init ()"><code class="function">gvir_init()</code></a> with only a single
172172 change: It does not terminate the program if the Libvirt GLib library
173 can't be initialized. Instead it returns <code class="literal">FALSE</code> on failure.</p>
173 can't be initialized. Instead it returns <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> on failure.</p>
174174 <p>This way the application can fall back to some other mode of
175175 operation.</p>
176176 <div class="refsect3">
192192 <td class="parameter_name"><p>argv</p></td>
193193 <td class="parameter_description">
194194 <p>Address of the</p>
195 <em class="parameter"><code>argv</code></em> parameter of <code class="function">main()</code>, or <code class="literal">NULL</code>. Any options
195 <em class="parameter"><code>argv</code></em> parameter of <code class="function">main()</code>, or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. Any options
196196 <p> understood by GTK+ are stripped before return. </p>
197197 </td>
198198 <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=argc][<acronym title="Parameter for input and for returning results. Default is transfer full."><span class="acronym">inout</span></acronym>][<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
207207 </div>
208208 <div class="refsect3">
209209 <a name="gvir-init-check.returns"></a><h4>Returns</h4>
210 <p> <code class="literal">TRUE</code> if the library was successfully initialized,
211 <code class="literal">FALSE</code> otherwise</p>
210 <p> <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the library was successfully initialized,
211 <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise</p>
212212 </div>
213213 </div>
214214 </div>
217217 </div>
218218 </div>
219219 <div class="footer">
220 <hr>Generated by GTK-Doc V1.28</div>
220 <hr>Generated by GTK-Doc V1.29</div>
221221 </body>
222222 </html>
66 <link rel="home" href="index.html" title="Libvirt GLib Reference Manual">
77 <link rel="up" href="index.html" title="Libvirt GLib Reference Manual">
88 <link rel="prev" href="api-index-full.html" title="API Index">
9 <meta name="generator" content="GTK-Doc V1.28 (XML mode)">
9 <meta name="generator" content="GTK-Doc V1.29 (XML mode)">
1010 <link rel="stylesheet" href="style.css" type="text/css">
1111 </head>
1212 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
5050 <dd class="glossdef"><p>Don't free data after the code is done.</p></dd>
5151 </div>
5252 <div class="footer">
53 <hr>Generated by GTK-Doc V1.28</div>
53 <hr>Generated by GTK-Doc V1.29</div>
5454 </body>
5555 </html>
77 <link rel="up" href="index.html" title="Libvirt GLib Reference Manual">
88 <link rel="prev" href="object-tree.html" title="Object Hierarchy">
99 <link rel="next" href="annotation-glossary.html" title="Annotation Glossary">
10 <meta name="generator" content="GTK-Doc V1.28 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.29 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
8080 <dd></dd>
8181 </div>
8282 <div class="footer">
83 <hr>Generated by GTK-Doc V1.28</div>
83 <hr>Generated by GTK-Doc V1.29</div>
8484 </body>
8585 </html>
77 <link rel="up" href="index.html" title="Libvirt GLib Reference Manual">
88 <link rel="prev" href="index.html" title="Libvirt GLib Reference Manual">
99 <link rel="next" href="Libvirt-glib-Library-initialization.html" title="Library initialization">
10 <meta name="generator" content="GTK-Doc V1.28 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.29 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
3434 </dl></div>
3535 </div>
3636 <div class="footer">
37 <hr>Generated by GTK-Doc V1.28</div>
37 <hr>Generated by GTK-Doc V1.29</div>
3838 </body>
3939 </html>
55 <meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
66 <link rel="home" href="index.html" title="Libvirt GLib Reference Manual">
77 <link rel="next" href="ch01.html" title="API Reference">
8 <meta name="generator" content="GTK-Doc V1.28 (XML mode)">
8 <meta name="generator" content="GTK-Doc V1.29 (XML mode)">
99 <link rel="stylesheet" href="style.css" type="text/css">
1010 </head>
1111 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
3333 </dl></div>
3434 </div>
3535 <div class="footer">
36 <hr>Generated by GTK-Doc V1.28</div>
36 <hr>Generated by GTK-Doc V1.29</div>
3737 </body>
3838 </html>
77 <link rel="up" href="index.html" title="Libvirt GLib Reference Manual">
88 <link rel="prev" href="Libvirt-glib-Event-loop.html" title="Event loop">
99 <link rel="next" href="api-index-full.html" title="API Index">
10 <meta name="generator" content="GTK-Doc V1.28 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.29 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
2626 </pre>
2727 </div>
2828 <div class="footer">
29 <hr>Generated by GTK-Doc V1.28</div>
29 <hr>Generated by GTK-Doc V1.29</div>
3030 </body>
3131 </html>
6969 gvir_connection_restore_domain_from_file
7070 gvir_connection_restore_domain_from_file_async
7171 gvir_connection_restore_domain_from_file_finish
72 gvir_connection_get_domain_capabilities
73 gvir_connection_get_domain_capabilities_async
74 gvir_connection_get_domain_capabilities_finish
7275 <SUBSECTION Standard>
7376 GVIR_CONNECTION
7477 GVIR_CONNECTION_CLASS
3535 $(LIBVIRT_LIBS) \
3636 $(GOBJECT2_LIBS) \
3737 $(GIO2_LIBS) \
38 $(top_builddir)/libvirt-gobject/libvirt-gobject-1.0.la
38 $(top_builddir)/libvirt-glib/libvirt-glib-1.0.la \
39 $(top_builddir)/libvirt-gconfig/libvirt-gconfig-1.0.la \
40 $(top_builddir)/libvirt-gobject/libvirt-gobject-1.0.la \
41 $(NULL)
3942
4043 include $(top_srcdir)/gtk-doc.make
0 # Makefile.in generated by automake 1.15.1 from Makefile.am.
0 # Makefile.in generated by automake 1.16.1 from Makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
1414 @SET_MAKE@
1515
1616 # -*- mode: makefile -*-
17 #
18 # gtk-doc.make - make rules for gtk-doc
19 # Copyright (C) 2003 James Henstridge
20 # 2004-2007 Damon Chaplin
21 # 2007-2017 Stefan Sauer
22 #
23 # This program is free software: you can redistribute it and/or modify
24 # it under the terms of the GNU General Public License as published by
25 # the Free Software Foundation, either version 3 of the License, or
26 # (at your option) any later version.
27 #
28 # This program is distributed in the hope that it will be useful,
29 # but WITHOUT ANY WARRANTY; without even the implied warranty of
30 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
31 # GNU General Public License for more details.
32 #
33 # You should have received a copy of the GNU General Public License
34 # along with this program. If not, see <http://www.gnu.org/licenses/>.
1735
1836 ####################################
1937 # Everything below here is generic #
95113 subdir = docs/libvirt-gobject
96114 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
97115 am__aclocal_m4_deps = $(top_srcdir)/m4/glibtests.m4 \
98 $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
99 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
100 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
101 $(top_srcdir)/m4/manywarnings.m4 \
116 $(top_srcdir)/m4/gtk-doc.m4 $(top_srcdir)/m4/introspection.m4 \
117 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
118 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
119 $(top_srcdir)/m4/lt~obsolete.m4 \
120 $(top_srcdir)/m4/manywarnings.m4 $(top_srcdir)/m4/pkg.m4 \
102121 $(top_srcdir)/m4/virt-compile-warnings.m4 \
103 $(top_srcdir)/m4/virt-gettext.m4 $(top_srcdir)/m4/warnings.m4 \
122 $(top_srcdir)/m4/virt-nls.m4 $(top_srcdir)/m4/warnings.m4 \
104123 $(top_srcdir)/configure.ac
105124 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
106125 $(ACLOCAL_M4)
132151 am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/gtk-doc.make
133152 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
134153 ACLOCAL = @ACLOCAL@
135 ALL_LINGUAS = @ALL_LINGUAS@
136154 AMTAR = @AMTAR@
137155 AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
138156 AR = @AR@
163181 EGREP = @EGREP@
164182 EXEEXT = @EXEEXT@
165183 FGREP = @FGREP@
166 GETTEXT_PACKAGE = @GETTEXT_PACKAGE@
167184 GIO2_CFLAGS = @GIO2_CFLAGS@
168185 GIO2_LIBS = @GIO2_LIBS@
169186 GLIB2_CFLAGS = @GLIB2_CFLAGS@
170187 GLIB2_LIBS = @GLIB2_LIBS@
171188 GLIB2_REQUIRED = @GLIB2_REQUIRED@
189 GLIB2_VERSION_SYMBOL = @GLIB2_VERSION_SYMBOL@
172190 GLIB_MKENUMS = @GLIB_MKENUMS@
173 GMSGFMT = @GMSGFMT@
174191 GOBJECT2_CFLAGS = @GOBJECT2_CFLAGS@
175192 GOBJECT2_LIBS = @GOBJECT2_LIBS@
176193 GREP = @GREP@
188205 INSTALL_PROGRAM = @INSTALL_PROGRAM@
189206 INSTALL_SCRIPT = @INSTALL_SCRIPT@
190207 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
191 INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
192 INTLTOOL_MERGE = @INTLTOOL_MERGE@
193 INTLTOOL_PERL = @INTLTOOL_PERL@
194 INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
195 INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@
196 INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@
197 INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@
198 INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@
199208 INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@
200209 INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@
201210 INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@
253262 SET_MAKE = @SET_MAKE@
254263 SHELL = @SHELL@
255264 STRIP = @STRIP@
256 USE_NLS = @USE_NLS@
257265 VAPIGEN = @VAPIGEN@
258266 VERSION = @VERSION@
259267 WARN_CFLAGS = @WARN_CFLAGS@
293301 install_sh = @install_sh@
294302 installed_test_metadir = @installed_test_metadir@
295303 installed_testdir = @installed_testdir@
296 intltool__v_merge_options_ = @intltool__v_merge_options_@
297 intltool__v_merge_options_0 = @intltool__v_merge_options_0@
298304 libdir = @libdir@
299305 libexecdir = @libexecdir@
300306 localedir = @localedir@
338344 $(LIBVIRT_LIBS) \
339345 $(GOBJECT2_LIBS) \
340346 $(GIO2_LIBS) \
341 $(top_builddir)/libvirt-gobject/libvirt-gobject-1.0.la
347 $(top_builddir)/libvirt-glib/libvirt-glib-1.0.la \
348 $(top_builddir)/libvirt-gconfig/libvirt-gconfig-1.0.la \
349 $(top_builddir)/libvirt-gobject/libvirt-gobject-1.0.la \
350 $(NULL)
342351
343352 @GTK_DOC_USE_LIBTOOL_FALSE@GTKDOC_CC = $(CC) $(INCLUDES) $(GTKDOC_DEPS_CFLAGS) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
344353 @GTK_DOC_USE_LIBTOOL_TRUE@GTKDOC_CC = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(INCLUDES) $(GTKDOC_DEPS_CFLAGS) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
356365 TARGET_DIR = $(HTML_DIR)/$(DOC_MODULE)
357366 SETUP_FILES = \
358367 $(content_files) \
368 $(expand_content_files) \
359369 $(DOC_MAIN_SGML_FILE) \
360370 $(DOC_MODULE)-sections.txt \
361371 $(DOC_MODULE)-overrides.txt
380390 $(DOC_MODULE)-undeclared.txt \
381391 $(DOC_MODULE)-unused.txt
382392
383 CLEANFILES = $(SCANOBJ_FILES) $(REPORT_FILES) $(DOC_STAMPS)
384 @ENABLE_GTK_DOC_TRUE@@GTK_DOC_BUILD_HTML_FALSE@HTML_BUILD_STAMP =
385 @ENABLE_GTK_DOC_TRUE@@GTK_DOC_BUILD_HTML_TRUE@HTML_BUILD_STAMP = html-build.stamp
386 @ENABLE_GTK_DOC_TRUE@@GTK_DOC_BUILD_PDF_FALSE@PDF_BUILD_STAMP =
387 @ENABLE_GTK_DOC_TRUE@@GTK_DOC_BUILD_PDF_TRUE@PDF_BUILD_STAMP = pdf-build.stamp
393 CLEANFILES = $(SCANOBJ_FILES) $(REPORT_FILES) $(DOC_STAMPS) gtkdoc-check.test
394 @GTK_DOC_BUILD_HTML_FALSE@HTML_BUILD_STAMP =
395 @GTK_DOC_BUILD_HTML_TRUE@HTML_BUILD_STAMP = html-build.stamp
396 @GTK_DOC_BUILD_PDF_FALSE@PDF_BUILD_STAMP =
397 @GTK_DOC_BUILD_PDF_TRUE@PDF_BUILD_STAMP = pdf-build.stamp
398
399 #### setup ####
400 GTK_DOC_V_SETUP = $(GTK_DOC_V_SETUP_@AM_V@)
401 GTK_DOC_V_SETUP_ = $(GTK_DOC_V_SETUP_@AM_DEFAULT_V@)
402 GTK_DOC_V_SETUP_0 = @echo " DOC Preparing build";
403
404 #### scan ####
405 GTK_DOC_V_SCAN = $(GTK_DOC_V_SCAN_@AM_V@)
406 GTK_DOC_V_SCAN_ = $(GTK_DOC_V_SCAN_@AM_DEFAULT_V@)
407 GTK_DOC_V_SCAN_0 = @echo " DOC Scanning header files";
408 GTK_DOC_V_INTROSPECT = $(GTK_DOC_V_INTROSPECT_@AM_V@)
409 GTK_DOC_V_INTROSPECT_ = $(GTK_DOC_V_INTROSPECT_@AM_DEFAULT_V@)
410 GTK_DOC_V_INTROSPECT_0 = @echo " DOC Introspecting gobjects";
411
412 #### xml ####
413 GTK_DOC_V_XML = $(GTK_DOC_V_XML_@AM_V@)
414 GTK_DOC_V_XML_ = $(GTK_DOC_V_XML_@AM_DEFAULT_V@)
415 GTK_DOC_V_XML_0 = @echo " DOC Building XML";
416
417 #### html ####
418 GTK_DOC_V_HTML = $(GTK_DOC_V_HTML_@AM_V@)
419 GTK_DOC_V_HTML_ = $(GTK_DOC_V_HTML_@AM_DEFAULT_V@)
420 GTK_DOC_V_HTML_0 = @echo " DOC Building HTML";
421 GTK_DOC_V_XREF = $(GTK_DOC_V_XREF_@AM_V@)
422 GTK_DOC_V_XREF_ = $(GTK_DOC_V_XREF_@AM_DEFAULT_V@)
423 GTK_DOC_V_XREF_0 = @echo " DOC Fixing cross-references";
424
425 #### pdf ####
426 GTK_DOC_V_PDF = $(GTK_DOC_V_PDF_@AM_V@)
427 GTK_DOC_V_PDF_ = $(GTK_DOC_V_PDF_@AM_DEFAULT_V@)
428 GTK_DOC_V_PDF_0 = @echo " DOC Building PDF";
388429 all: all-am
389430
390431 .SUFFIXES:
405446 *config.status*) \
406447 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
407448 *) \
408 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
409 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
449 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
450 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
410451 esac;
411452 $(top_srcdir)/gtk-doc.make $(am__empty):
412453
431472 cscope cscopelist:
432473
433474
434 distdir: $(DISTFILES)
475 distdir: $(BUILT_SOURCES)
476 $(MAKE) $(AM_MAKEFLAGS) distdir-am
477
478 distdir-am: $(DISTFILES)
435479 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
436480 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
437481 list='$(DISTFILES)'; \
466510 dist-hook
467511 check-am: all-am
468512 check: check-am
513 @ENABLE_GTK_DOC_FALSE@all-local:
469514 all-am: Makefile all-local
470515 installdirs:
471516 install: install-am
585630 .PRECIOUS: Makefile
586631
587632
588 @ENABLE_GTK_DOC_TRUE@all-local: $(HTML_BUILD_STAMP) $(PDF_BUILD_STAMP)
589 @ENABLE_GTK_DOC_FALSE@all-local:
633 gtkdoc-check.test: Makefile
634 $(AM_V_GEN)echo "#!/bin/sh -e" > $@; \
635 echo "$(GTKDOC_CHECK_PATH) || exit 1" >> $@; \
636 chmod +x $@
637
638 all-gtk-doc: $(HTML_BUILD_STAMP) $(PDF_BUILD_STAMP)
639 .PHONY: all-gtk-doc
640
641 @ENABLE_GTK_DOC_TRUE@all-local: all-gtk-doc
590642
591643 docs: $(HTML_BUILD_STAMP) $(PDF_BUILD_STAMP)
592644
593645 $(REPORT_FILES): sgml-build.stamp
594646
595 #### setup ####
596
597647 setup-build.stamp:
598 -@if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \
599 echo ' DOC Preparing build'; \
600 files=`echo $(SETUP_FILES) $(expand_content_files) $(DOC_MODULE).types`; \
601 if test "x$$files" != "x" ; then \
602 for file in $$files ; do \
603 test -f $(abs_srcdir)/$$file && \
604 cp -pu $(abs_srcdir)/$$file $(abs_builddir)/ || true; \
605 done; \
606 fi; \
648 -$(GTK_DOC_V_SETUP)if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \
649 files=`echo $(SETUP_FILES) $(DOC_MODULE).types`; \
650 if test "x$$files" != "x" ; then \
651 for file in $$files ; do \
652 destdir=`dirname $(abs_builddir)/$$file`; \
653 test -d "$$destdir" || mkdir -p "$$destdir"; \
654 test -f $(abs_srcdir)/$$file && \
655 cp -pf $(abs_srcdir)/$$file $(abs_builddir)/$$file || true; \
656 done; \
657 fi; \
607658 fi
608 @touch setup-build.stamp
609
610 #### scan ####
611
612 scan-build.stamp: $(HFILE_GLOB) $(CFILE_GLOB)
613 @echo ' DOC Scanning header files'
614 @_source_dir='' ; \
659 $(AM_V_at)touch setup-build.stamp
660
661 scan-build.stamp: setup-build.stamp $(HFILE_GLOB) $(CFILE_GLOB)
662 $(GTK_DOC_V_SCAN)_source_dir='' ; \
615663 for i in $(DOC_SOURCE_DIR) ; do \
616 _source_dir="$${_source_dir} --source-dir=$$i" ; \
664 _source_dir="$${_source_dir} --source-dir=$$i" ; \
617665 done ; \
618666 gtkdoc-scan --module=$(DOC_MODULE) --ignore-headers="$(IGNORE_HFILES)" $${_source_dir} $(SCAN_OPTIONS) $(EXTRA_HFILES)
619 @if grep -l '^..*$$' $(DOC_MODULE).types > /dev/null 2>&1 ; then \
620 echo " DOC Introspecting gobjects"; \
621 scanobj_options=""; \
622 gtkdoc-scangobj 2>&1 --help | grep >/dev/null "\-\-verbose"; \
623 if test "$(?)" = "0"; then \
624 if test "x$(V)" = "x1"; then \
625 scanobj_options="--verbose"; \
626 fi; \
667 $(GTK_DOC_V_INTROSPECT)if grep -l '^..*$$' $(DOC_MODULE).types > /dev/null 2>&1 ; then \
668 scanobj_options=""; \
669 gtkdoc-scangobj 2>&1 --help | grep >/dev/null "\-\-verbose"; \
670 if test "$$?" = "0"; then \
671 if test "x$(V)" = "x1"; then \
672 scanobj_options="--verbose"; \
627673 fi; \
628 CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" RUN="$(GTKDOC_RUN)" CFLAGS="$(GTKDOC_CFLAGS) $(CFLAGS)" LDFLAGS="$(GTKDOC_LIBS) $(LDFLAGS)" \
629 gtkdoc-scangobj $(SCANGOBJ_OPTIONS) $$scanobj_options --module=$(DOC_MODULE); \
674 fi; \
675 CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" RUN="$(GTKDOC_RUN)" CFLAGS="$(GTKDOC_CFLAGS) $(CFLAGS)" LDFLAGS="$(GTKDOC_LIBS) $(LDFLAGS)" \
676 gtkdoc-scangobj $(SCANGOBJ_OPTIONS) $$scanobj_options --module=$(DOC_MODULE); \
630677 else \
631 for i in $(SCANOBJ_FILES) ; do \
632 test -f $$i || touch $$i ; \
633 done \
678 for i in $(SCANOBJ_FILES) ; do \
679 test -f $$i || touch $$i ; \
680 done \
634681 fi
635 @touch scan-build.stamp
682 $(AM_V_at)touch scan-build.stamp
636683
637684 $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt: scan-build.stamp
638685 @true
639686
640 #### xml ####
641
642 sgml-build.stamp: setup-build.stamp $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt $(expand_content_files)
643 @echo ' DOC Building XML'
644 @_source_dir='' ; \
687 sgml-build.stamp: setup-build.stamp $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(HFILE_GLOB) $(CFILE_GLOB) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt $(expand_content_files) xml/gtkdocentities.ent
688 $(GTK_DOC_V_XML)_source_dir='' ; \
645689 for i in $(DOC_SOURCE_DIR) ; do \
646 _source_dir="$${_source_dir} --source-dir=$$i" ; \
690 _source_dir="$${_source_dir} --source-dir=$$i" ; \
647691 done ; \
648692 gtkdoc-mkdb --module=$(DOC_MODULE) --output-format=xml --expand-content-files="$(expand_content_files)" --main-sgml-file=$(DOC_MAIN_SGML_FILE) $${_source_dir} $(MKDB_OPTIONS)
649 @touch sgml-build.stamp
693 $(AM_V_at)touch sgml-build.stamp
650694
651695 sgml.stamp: sgml-build.stamp
652696 @true
653697
654 #### html ####
655
656 html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files)
657 @echo ' DOC Building HTML'
658 @rm -rf html
659 @mkdir html
660 @mkhtml_options=""; \
698 $(DOC_MAIN_SGML_FILE): sgml-build.stamp
699 @true
700
701 xml/gtkdocentities.ent: Makefile
702 $(GTK_DOC_V_XML)$(MKDIR_P) $(@D) && ( \
703 echo "<!ENTITY package \"$(PACKAGE)\">"; \
704 echo "<!ENTITY package_bugreport \"$(PACKAGE_BUGREPORT)\">"; \
705 echo "<!ENTITY package_name \"$(PACKAGE_NAME)\">"; \
706 echo "<!ENTITY package_string \"$(PACKAGE_STRING)\">"; \
707 echo "<!ENTITY package_tarname \"$(PACKAGE_TARNAME)\">"; \
708 echo "<!ENTITY package_url \"$(PACKAGE_URL)\">"; \
709 echo "<!ENTITY package_version \"$(PACKAGE_VERSION)\">"; \
710 ) > $@
711
712 html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) $(expand_content_files)
713 $(GTK_DOC_V_HTML)rm -rf html && mkdir html && \
714 mkhtml_options=""; \
661715 gtkdoc-mkhtml 2>&1 --help | grep >/dev/null "\-\-verbose"; \
662 if test "$(?)" = "0"; then \
716 if test "$$?" = "0"; then \
663717 if test "x$(V)" = "x1"; then \
664718 mkhtml_options="$$mkhtml_options --verbose"; \
665719 fi; \
666720 fi; \
667721 gtkdoc-mkhtml 2>&1 --help | grep >/dev/null "\-\-path"; \
668 if test "$(?)" = "0"; then \
722 if test "$$?" = "0"; then \
669723 mkhtml_options="$$mkhtml_options --path=\"$(abs_srcdir)\""; \
670724 fi; \
671725 cd html && gtkdoc-mkhtml $$mkhtml_options $(MKHTML_OPTIONS) $(DOC_MODULE) ../$(DOC_MAIN_SGML_FILE)
672726 -@test "x$(HTML_IMAGES)" = "x" || \
673727 for file in $(HTML_IMAGES) ; do \
674 if test -f $(abs_srcdir)/$$file ; then \
675 cp $(abs_srcdir)/$$file $(abs_builddir)/html; \
676 fi; \
677 if test -f $(abs_builddir)/$$file ; then \
678 cp $(abs_builddir)/$$file $(abs_builddir)/html; \
679 fi; \
728 test -f $(abs_srcdir)/$$file && cp $(abs_srcdir)/$$file $(abs_builddir)/html; \
729 test -f $(abs_builddir)/$$file && cp $(abs_builddir)/$$file $(abs_builddir)/html; \
730 test -f $$file && cp $$file $(abs_builddir)/html; \
680731 done;
681 @echo ' DOC Fixing cross-references'
682 @gtkdoc-fixxref --module=$(DOC_MODULE) --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS)
683 @touch html-build.stamp
684
685 #### pdf ####
686
687 pdf-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files)
688 @echo ' DOC Building PDF'
689 @rm -f $(DOC_MODULE).pdf
690 @mkpdf_options=""; \
732 $(GTK_DOC_V_XREF)gtkdoc-fixxref --module=$(DOC_MODULE) --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS)
733 $(AM_V_at)touch html-build.stamp
734
735 pdf-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) $(expand_content_files)
736 $(GTK_DOC_V_PDF)rm -f $(DOC_MODULE).pdf && \
737 mkpdf_options=""; \
691738 gtkdoc-mkpdf 2>&1 --help | grep >/dev/null "\-\-verbose"; \
692 if test "$(?)" = "0"; then \
739 if test "$$?" = "0"; then \
693740 if test "x$(V)" = "x1"; then \
694741 mkpdf_options="$$mkpdf_options --verbose"; \
695742 fi; \
704751 done; \
705752 fi; \
706753 gtkdoc-mkpdf --path="$(abs_srcdir)" $$mkpdf_options $(DOC_MODULE) $(DOC_MAIN_SGML_FILE) $(MKPDF_OPTIONS)
707 @touch pdf-build.stamp
754 $(AM_V_at)touch pdf-build.stamp
708755
709756 ##############
710757
711758 clean-local:
712759 @rm -f *~ *.bak
713760 @rm -rf .libs
761 @if echo $(SCAN_OPTIONS) | grep -q "\-\-rebuild-types" ; then \
762 rm -f $(DOC_MODULE).types; \
763 fi
764 @if echo $(SCAN_OPTIONS) | grep -q "\-\-rebuild-sections" ; then \
765 rm -f $(DOC_MODULE)-sections.txt; \
766 fi
714767
715768 distclean-local:
716769 @rm -rf xml html $(REPORT_FILES) $(DOC_MODULE).pdf \
717770 $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt
718771 @if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \
719 rm -f $(SETUP_FILES) $(expand_content_files) $(DOC_MODULE).types; \
772 rm -f $(SETUP_FILES) $(DOC_MODULE).types; \
720773 fi
721774
722 maintainer-clean-local: clean
775 maintainer-clean-local:
723776 @rm -rf xml html
724777
725778 install-data-local:
755808 #
756809 # Require gtk-doc when making dist
757810 #
758 @ENABLE_GTK_DOC_TRUE@dist-check-gtkdoc:
759 @ENABLE_GTK_DOC_FALSE@dist-check-gtkdoc:
760 @ENABLE_GTK_DOC_FALSE@ @echo "*** gtk-doc must be installed and enabled in order to make dist"
761 @ENABLE_GTK_DOC_FALSE@ @false
762
763 dist-hook: dist-check-gtkdoc dist-hook-local
811 @HAVE_GTK_DOC_TRUE@dist-check-gtkdoc: docs
812 @HAVE_GTK_DOC_FALSE@dist-check-gtkdoc:
813 @HAVE_GTK_DOC_FALSE@ @echo "*** gtk-doc is needed to run 'make dist'. ***"
814 @HAVE_GTK_DOC_FALSE@ @echo "*** gtk-doc was not found when 'configure' ran. ***"
815 @HAVE_GTK_DOC_FALSE@ @echo "*** please install gtk-doc and rerun 'configure'. ***"
816 @HAVE_GTK_DOC_FALSE@ @false
817
818 dist-hook: dist-check-gtkdoc all-gtk-doc dist-hook-local
764819 @mkdir $(distdir)/html
765820 @cp ./html/* $(distdir)/html
766821 @-cp ./$(DOC_MODULE).pdf $(distdir)/
77 <link rel="up" href="ch01.html" title="Libvirt-gobject">
88 <link rel="prev" href="ch01.html" title="Libvirt-gobject">
99 <link rel="next" href="GVirDomain.html" title="GVirDomain">
10 <meta name="generator" content="GTK-Doc V1.28 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.29 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
5151 </tr>
5252 <tr>
5353 <td class="function_type">
54 <span class="returnvalue">gboolean</span>
54 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
5555 </td>
5656 <td class="function_name">
5757 <a class="link" href="GVirConnection.html#gvir-connection-open" title="gvir_connection_open ()">gvir_connection_open</a> <span class="c_punctuation">()</span>
5959 </tr>
6060 <tr>
6161 <td class="function_type">
62 <span class="returnvalue">gboolean</span>
62 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
6363 </td>
6464 <td class="function_name">
6565 <a class="link" href="GVirConnection.html#gvir-connection-open-read-only" title="gvir_connection_open_read_only ()">gvir_connection_open_read_only</a> <span class="c_punctuation">()</span>
7575 </tr>
7676 <tr>
7777 <td class="function_type">
78 <span class="returnvalue">gboolean</span>
78 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
7979 </td>
8080 <td class="function_name">
8181 <a class="link" href="GVirConnection.html#gvir-connection-open-finish" title="gvir_connection_open_finish ()">gvir_connection_open_finish</a> <span class="c_punctuation">()</span>
9191 </tr>
9292 <tr>
9393 <td class="function_type">
94 <span class="returnvalue">gboolean</span>
94 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
9595 </td>
9696 <td class="function_name">
9797 <a class="link" href="GVirConnection.html#gvir-connection-open-read-only-finish" title="gvir_connection_open_read_only_finish ()">gvir_connection_open_read_only_finish</a> <span class="c_punctuation">()</span>
9999 </tr>
100100 <tr>
101101 <td class="function_type">
102 <span class="returnvalue">gboolean</span>
102 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
103103 </td>
104104 <td class="function_name">
105105 <a class="link" href="GVirConnection.html#gvir-connection-is-open" title="gvir_connection_is_open ()">gvir_connection_is_open</a> <span class="c_punctuation">()</span>
107107 </tr>
108108 <tr>
109109 <td class="function_type">
110 <span class="returnvalue">gboolean</span>
110 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
111111 </td>
112112 <td class="function_name">
113113 <a class="link" href="GVirConnection.html#gvir-connection-is-read-only" title="gvir_connection_is_read_only ()">gvir_connection_is_read_only</a> <span class="c_punctuation">()</span>
123123 </tr>
124124 <tr>
125125 <td class="function_type">
126 <span class="returnvalue">gboolean</span>
126 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
127127 </td>
128128 <td class="function_name">
129129 <a class="link" href="GVirConnection.html#gvir-connection-fetch-domains" title="gvir_connection_fetch_domains ()">gvir_connection_fetch_domains</a> <span class="c_punctuation">()</span>
139139 </tr>
140140 <tr>
141141 <td class="function_type">
142 <span class="returnvalue">gboolean</span>
142 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
143143 </td>
144144 <td class="function_name">
145145 <a class="link" href="GVirConnection.html#gvir-connection-fetch-domains-finish" title="gvir_connection_fetch_domains_finish ()">gvir_connection_fetch_domains_finish</a> <span class="c_punctuation">()</span>
146146 </td>
147147 </tr>
148148 <tr>
149 <td class="function_type">const <span class="returnvalue">gchar</span> *
149 <td class="function_type">const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
150150 </td>
151151 <td class="function_name">
152152 <a class="link" href="GVirConnection.html#gvir-connection-get-uri" title="gvir_connection_get_uri ()">gvir_connection_get_uri</a> <span class="c_punctuation">()</span>
154154 </tr>
155155 <tr>
156156 <td class="function_type">
157 <span class="returnvalue">gchar</span> *
157 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
158158 </td>
159159 <td class="function_name">
160160 <a class="link" href="GVirConnection.html#gvir-connection-get-hypervisor-name" title="gvir_connection_get_hypervisor_name ()">gvir_connection_get_hypervisor_name</a> <span class="c_punctuation">()</span>
162162 </tr>
163163 <tr>
164164 <td class="function_type">
165 <span class="returnvalue">gulong</span>
165 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gulong"><span class="returnvalue">gulong</span></a>
166166 </td>
167167 <td class="function_name">
168168 <a class="link" href="GVirConnection.html#gvir-connection-get-version" title="gvir_connection_get_version ()">gvir_connection_get_version</a> <span class="c_punctuation">()</span>
170170 </tr>
171171 <tr>
172172 <td class="function_type">
173 <span class="returnvalue">GList</span> *
173 <a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
174174 </td>
175175 <td class="function_name">
176176 <a class="link" href="GVirConnection.html#gvir-connection-get-domains" title="gvir_connection_get_domains ()">gvir_connection_get_domains</a> <span class="c_punctuation">()</span>
218218 </tr>
219219 <tr>
220220 <td class="function_type">
221 <span class="returnvalue">gboolean</span>
221 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
222222 </td>
223223 <td class="function_name">
224224 <a class="link" href="GVirConnection.html#gvir-connection-fetch-interfaces" title="gvir_connection_fetch_interfaces ()">gvir_connection_fetch_interfaces</a> <span class="c_punctuation">()</span>
234234 </tr>
235235 <tr>
236236 <td class="function_type">
237 <span class="returnvalue">gboolean</span>
237 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
238238 </td>
239239 <td class="function_name">
240240 <a class="link" href="GVirConnection.html#gvir-connection-fetch-interfaces-finish" title="gvir_connection_fetch_interfaces_finish ()">gvir_connection_fetch_interfaces_finish</a> <span class="c_punctuation">()</span>
242242 </tr>
243243 <tr>
244244 <td class="function_type">
245 <span class="returnvalue">GList</span> *
245 <a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
246246 </td>
247247 <td class="function_name">
248248 <a class="link" href="GVirConnection.html#gvir-connection-get-interfaces" title="gvir_connection_get_interfaces ()">gvir_connection_get_interfaces</a> <span class="c_punctuation">()</span>
266266 </tr>
267267 <tr>
268268 <td class="function_type">
269 <span class="returnvalue">gboolean</span>
269 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
270270 </td>
271271 <td class="function_name">
272272 <a class="link" href="GVirConnection.html#gvir-connection-fetch-networks" title="gvir_connection_fetch_networks ()">gvir_connection_fetch_networks</a> <span class="c_punctuation">()</span>
282282 </tr>
283283 <tr>
284284 <td class="function_type">
285 <span class="returnvalue">gboolean</span>
285 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
286286 </td>
287287 <td class="function_name">
288288 <a class="link" href="GVirConnection.html#gvir-connection-fetch-networks-finish" title="gvir_connection_fetch_networks_finish ()">gvir_connection_fetch_networks_finish</a> <span class="c_punctuation">()</span>
290290 </tr>
291291 <tr>
292292 <td class="function_type">
293 <span class="returnvalue">GList</span> *
293 <a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
294294 </td>
295295 <td class="function_name">
296296 <a class="link" href="GVirConnection.html#gvir-connection-get-networks" title="gvir_connection_get_networks ()">gvir_connection_get_networks</a> <span class="c_punctuation">()</span>
314314 </tr>
315315 <tr>
316316 <td class="function_type">
317 <span class="returnvalue">GList</span> *
317 <a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
318318 </td>
319319 <td class="function_name">
320320 <a class="link" href="GVirConnection.html#gvir-connection-get-network-filters" title="gvir_connection_get_network_filters ()">gvir_connection_get_network_filters</a> <span class="c_punctuation">()</span>
338338 </tr>
339339 <tr>
340340 <td class="function_type">
341 <span class="returnvalue">GList</span> *
341 <a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
342342 </td>
343343 <td class="function_name">
344344 <a class="link" href="GVirConnection.html#gvir-connection-get-node-devices" title="gvir_connection_get_node_devices ()">gvir_connection_get_node_devices</a> <span class="c_punctuation">()</span>
354354 </tr>
355355 <tr>
356356 <td class="function_type">
357 <span class="returnvalue">GList</span> *
357 <a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
358358 </td>
359359 <td class="function_name">
360360 <a class="link" href="GVirConnection.html#gvir-connection-get-secrets" title="gvir_connection_get_secrets ()">gvir_connection_get_secrets</a> <span class="c_punctuation">()</span>
370370 </tr>
371371 <tr>
372372 <td class="function_type">
373 <span class="returnvalue">gboolean</span>
373 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
374374 </td>
375375 <td class="function_name">
376376 <a class="link" href="GVirConnection.html#gvir-connection-fetch-storage-pools" title="gvir_connection_fetch_storage_pools ()">gvir_connection_fetch_storage_pools</a> <span class="c_punctuation">()</span>
386386 </tr>
387387 <tr>
388388 <td class="function_type">
389 <span class="returnvalue">gboolean</span>
389 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
390390 </td>
391391 <td class="function_name">
392392 <a class="link" href="GVirConnection.html#gvir-connection-fetch-storage-pools-finish" title="gvir_connection_fetch_storage_pools_finish ()">gvir_connection_fetch_storage_pools_finish</a> <span class="c_punctuation">()</span>
394394 </tr>
395395 <tr>
396396 <td class="function_type">
397 <span class="returnvalue">GList</span> *
397 <a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
398398 </td>
399399 <td class="function_name">
400400 <a class="link" href="GVirConnection.html#gvir-connection-get-storage-pools" title="gvir_connection_get_storage_pools ()">gvir_connection_get_storage_pools</a> <span class="c_punctuation">()</span>
466466 </tr>
467467 <tr>
468468 <td class="function_type">
469 <span class="returnvalue">gboolean</span>
469 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
470470 </td>
471471 <td class="function_name">
472472 <a class="link" href="GVirConnection.html#gvir-connection-restore-domain-from-file" title="gvir_connection_restore_domain_from_file ()">gvir_connection_restore_domain_from_file</a> <span class="c_punctuation">()</span>
482482 </tr>
483483 <tr>
484484 <td class="function_type">
485 <span class="returnvalue">gboolean</span>
485 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
486486 </td>
487487 <td class="function_name">
488488 <a class="link" href="GVirConnection.html#gvir-connection-restore-domain-from-file-finish" title="gvir_connection_restore_domain_from_file_finish ()">gvir_connection_restore_domain_from_file_finish</a> <span class="c_punctuation">()</span>
489 </td>
490 </tr>
491 <tr>
492 <td class="function_type">
493 <span class="returnvalue">GVirConfigDomainCapabilities</span> *
494 </td>
495 <td class="function_name">
496 <a class="link" href="GVirConnection.html#gvir-connection-get-domain-capabilities" title="gvir_connection_get_domain_capabilities ()">gvir_connection_get_domain_capabilities</a> <span class="c_punctuation">()</span>
497 </td>
498 </tr>
499 <tr>
500 <td class="function_type">
501 <span class="returnvalue">void</span>
502 </td>
503 <td class="function_name">
504 <a class="link" href="GVirConnection.html#gvir-connection-get-domain-capabilities-async" title="gvir_connection_get_domain_capabilities_async ()">gvir_connection_get_domain_capabilities_async</a> <span class="c_punctuation">()</span>
505 </td>
506 </tr>
507 <tr>
508 <td class="function_type">
509 <span class="returnvalue">GVirConfigDomainCapabilities</span> *
510 </td>
511 <td class="function_name">
512 <a class="link" href="GVirConnection.html#gvir-connection-get-domain-capabilities-finish" title="gvir_connection_get_domain_capabilities_finish ()">gvir_connection_get_domain_capabilities_finish</a> <span class="c_punctuation">()</span>
489513 </td>
490514 </tr>
491515 </tbody>
508532 </tr>
509533 <tr>
510534 <td class="property_type">
511 <span class="type">gchar</span> *</td>
535 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>
512536 <td class="property_name"><a class="link" href="GVirConnection.html#GVirConnection--uri" title="The “uri” property">uri</a></td>
513537 <td class="property_flags">Read / Write / Construct Only</td>
514538 </tr>
527551 <tr>
528552 <td class="signal_type"><span class="returnvalue">void</span></td>
529553 <td class="signal_name"><a class="link" href="GVirConnection.html#GVirConnection-connection-closed" title="The “connection-closed” signal">connection-closed</a></td>
530 <td class="signal_flags">Run First</td>
554 <td class="signal_flags"><a href="/usr/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-RUN-FIRST:CAPS">Run First</a></td>
531555 </tr>
532556 <tr>
533557 <td class="signal_type"><span class="returnvalue">void</span></td>
534558 <td class="signal_name"><a class="link" href="GVirConnection.html#GVirConnection-connection-opened" title="The “connection-opened” signal">connection-opened</a></td>
535 <td class="signal_flags">Run First</td>
559 <td class="signal_flags"><a href="/usr/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-RUN-FIRST:CAPS">Run First</a></td>
536560 </tr>
537561 <tr>
538562 <td class="signal_type"><span class="returnvalue">void</span></td>
539563 <td class="signal_name"><a class="link" href="GVirConnection.html#GVirConnection-domain-added" title="The “domain-added” signal">domain-added</a></td>
540 <td class="signal_flags">Run First</td>
564 <td class="signal_flags"><a href="/usr/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-RUN-FIRST:CAPS">Run First</a></td>
541565 </tr>
542566 <tr>
543567 <td class="signal_type"><span class="returnvalue">void</span></td>
544568 <td class="signal_name"><a class="link" href="GVirConnection.html#GVirConnection-domain-removed" title="The “domain-removed” signal">domain-removed</a></td>
545 <td class="signal_flags">Run First</td>
569 <td class="signal_flags"><a href="/usr/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-RUN-FIRST:CAPS">Run First</a></td>
546570 </tr>
547571 </tbody>
548572 </table></div>
551575 <a name="GVirConnection.object-hierarchy"></a><h2>Object Hierarchy</h2>
552576 <pre class="screen"> <a href="/usr/share/gtk-doc/html/gobject/gobject-Boxed-Types.html">GBoxed</a>
553577 <span class="lineart">╰──</span> GVirNodeInfo
554 GObject
578 <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a>
555579 <span class="lineart">╰──</span> GVirConnection
556580 </pre>
557581 </div>
568592 <hr>
569593 <div class="refsect2">
570594 <a name="gvir-connection-open"></a><h3>gvir_connection_open ()</h3>
571 <pre class="programlisting"><span class="returnvalue">gboolean</span>
595 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
572596 gvir_connection_open (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
573 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
574 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
597 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GCancellable.html#GCancellable-struct"><span class="type">GCancellable</span></a> *cancellable</code></em>,
598 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
575599 <div class="refsect3">
576600 <a name="gvir-connection-open.parameters"></a><h4>Parameters</h4>
577601 <div class="informaltable"><table class="informaltable" width="100%" border="0">
598622 <hr>
599623 <div class="refsect2">
600624 <a name="gvir-connection-open-read-only"></a><h3>gvir_connection_open_read_only ()</h3>
601 <pre class="programlisting"><span class="returnvalue">gboolean</span>
625 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
602626 gvir_connection_open_read_only (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
603 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
604 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
627 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GCancellable.html#GCancellable-struct"><span class="type">GCancellable</span></a> *cancellable</code></em>,
628 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
605629 </div>
606630 <hr>
607631 <div class="refsect2">
608632 <a name="gvir-connection-open-async"></a><h3>gvir_connection_open_async ()</h3>
609633 <pre class="programlisting"><span class="returnvalue">void</span>
610634 gvir_connection_open_async (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
611 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
612 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
613 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
635 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GCancellable.html#GCancellable-struct"><span class="type">GCancellable</span></a> *cancellable</code></em>,
636 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
637 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
614638 <div class="refsect3">
615639 <a name="gvir-connection-open-async.parameters"></a><h4>Parameters</h4>
616640 <div class="informaltable"><table class="informaltable" width="100%" border="0">
647671 <hr>
648672 <div class="refsect2">
649673 <a name="gvir-connection-open-finish"></a><h3>gvir_connection_open_finish ()</h3>
650 <pre class="programlisting"><span class="returnvalue">gboolean</span>
674 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
651675 gvir_connection_open_finish (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
652 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
653 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
676 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncResult-struct"><span class="type">GAsyncResult</span></a> *result</code></em>,
677 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
654678 <div class="refsect3">
655679 <a name="gvir-connection-open-finish.parameters"></a><h4>Parameters</h4>
656680 <div class="informaltable"><table class="informaltable" width="100%" border="0">
679703 <a name="gvir-connection-open-read-only-async"></a><h3>gvir_connection_open_read_only_async ()</h3>
680704 <pre class="programlisting"><span class="returnvalue">void</span>
681705 gvir_connection_open_read_only_async (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
682 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
683 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
684 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
706 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GCancellable.html#GCancellable-struct"><span class="type">GCancellable</span></a> *cancellable</code></em>,
707 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
708 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
685709 <div class="refsect3">
686710 <a name="gvir-connection-open-read-only-async.parameters"></a><h4>Parameters</h4>
687711 <div class="informaltable"><table class="informaltable" width="100%" border="0">
718742 <hr>
719743 <div class="refsect2">
720744 <a name="gvir-connection-open-read-only-finish"></a><h3>gvir_connection_open_read_only_finish ()</h3>
721 <pre class="programlisting"><span class="returnvalue">gboolean</span>
745 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
722746 gvir_connection_open_read_only_finish (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
723 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
724 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
747 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncResult-struct"><span class="type">GAsyncResult</span></a> *result</code></em>,
748 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
725749 <div class="refsect3">
726750 <a name="gvir-connection-open-read-only-finish.parameters"></a><h4>Parameters</h4>
727751 <div class="informaltable"><table class="informaltable" width="100%" border="0">
748772 <hr>
749773 <div class="refsect2">
750774 <a name="gvir-connection-is-open"></a><h3>gvir_connection_is_open ()</h3>
751 <pre class="programlisting"><span class="returnvalue">gboolean</span>
775 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
752776 gvir_connection_is_open (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>);</pre>
753777 </div>
754778 <hr>
755779 <div class="refsect2">
756780 <a name="gvir-connection-is-read-only"></a><h3>gvir_connection_is_read_only ()</h3>
757 <pre class="programlisting"><span class="returnvalue">gboolean</span>
781 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
758782 gvir_connection_is_read_only (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>);</pre>
759783 </div>
760784 <hr>
766790 <hr>
767791 <div class="refsect2">
768792 <a name="gvir-connection-fetch-domains"></a><h3>gvir_connection_fetch_domains ()</h3>
769 <pre class="programlisting"><span class="returnvalue">gboolean</span>
793 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
770794 gvir_connection_fetch_domains (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
771 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
772 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
795 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GCancellable.html#GCancellable-struct"><span class="type">GCancellable</span></a> *cancellable</code></em>,
796 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
773797 <p>Use this method to fetch all domains managed by connection
774798 <em class="parameter"><code>conn</code></em>
775799 . Use e.g. <a class="link" href="GVirConnection.html#gvir-connection-find-domain-by-id" title="gvir_connection_find_domain_by_id ()"><span class="type">gvir_connection_find_domain_by_id</span></a> or
803827 <a name="gvir-connection-fetch-domains-async"></a><h3>gvir_connection_fetch_domains_async ()</h3>
804828 <pre class="programlisting"><span class="returnvalue">void</span>
805829 gvir_connection_fetch_domains_async (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
806 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
807 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
808 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
830 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GCancellable.html#GCancellable-struct"><span class="type">GCancellable</span></a> *cancellable</code></em>,
831 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
832 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
809833 <div class="refsect3">
810834 <a name="gvir-connection-fetch-domains-async.parameters"></a><h4>Parameters</h4>
811835 <div class="informaltable"><table class="informaltable" width="100%" border="0">
842866 <hr>
843867 <div class="refsect2">
844868 <a name="gvir-connection-fetch-domains-finish"></a><h3>gvir_connection_fetch_domains_finish ()</h3>
845 <pre class="programlisting"><span class="returnvalue">gboolean</span>
869 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
846870 gvir_connection_fetch_domains_finish (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
847 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
848 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
871 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncResult-struct"><span class="type">GAsyncResult</span></a> *result</code></em>,
872 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
849873 <div class="refsect3">
850874 <a name="gvir-connection-fetch-domains-finish.parameters"></a><h4>Parameters</h4>
851875 <div class="informaltable"><table class="informaltable" width="100%" border="0">
872896 <hr>
873897 <div class="refsect2">
874898 <a name="gvir-connection-get-uri"></a><h3>gvir_connection_get_uri ()</h3>
875 <pre class="programlisting">const <span class="returnvalue">gchar</span> *
899 <pre class="programlisting">const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
876900 gvir_connection_get_uri (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>);</pre>
877901 </div>
878902 <hr>
879903 <div class="refsect2">
880904 <a name="gvir-connection-get-hypervisor-name"></a><h3>gvir_connection_get_hypervisor_name ()</h3>
881 <pre class="programlisting"><span class="returnvalue">gchar</span> *
905 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
882906 gvir_connection_get_hypervisor_name (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
883 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
907 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
884908 <p>Get name of current hypervisor used.</p>
885909 <div class="refsect3">
886910 <a name="gvir-connection-get-hypervisor-name.parameters"></a><h4>Parameters</h4>
898922 </tr>
899923 <tr>
900924 <td class="parameter_name"><p>err</p></td>
901 <td class="parameter_description"><p>return location for any <span class="type">GError</span></p></td>
925 <td class="parameter_description"><p>return location for any <a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a></p></td>
902926 <td class="parameter_annotations"> </td>
903927 </tr>
904928 </tbody>
913937 <hr>
914938 <div class="refsect2">
915939 <a name="gvir-connection-get-version"></a><h3>gvir_connection_get_version ()</h3>
916 <pre class="programlisting"><span class="returnvalue">gulong</span>
940 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gulong"><span class="returnvalue">gulong</span></a>
917941 gvir_connection_get_version (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
918 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
942 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
919943 <p>Get version of current hypervisor used.</p>
920944 <div class="refsect3">
921945 <a name="gvir-connection-get-version.parameters"></a><h4>Parameters</h4>
933957 </tr>
934958 <tr>
935959 <td class="parameter_name"><p>err</p></td>
936 <td class="parameter_description"><p>return location for any <span class="type">GError</span></p></td>
960 <td class="parameter_description"><p>return location for any <a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a></p></td>
937961 <td class="parameter_annotations"> </td>
938962 </tr>
939963 </tbody>
948972 <hr>
949973 <div class="refsect2">
950974 <a name="gvir-connection-get-domains"></a><h3>gvir_connection_get_domains ()</h3>
951 <pre class="programlisting"><span class="returnvalue">GList</span> *
975 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
952976 gvir_connection_get_domains (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>);</pre>
953977 <p>Gets a list of the domains available through <em class="parameter"><code>conn</code></em>
954978 .</p>
970994 <div class="refsect3">
971995 <a name="gvir-connection-get-domains.returns"></a><h4>Returns</h4>
972996 <p>List
973 of <a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a>. The returned list should be freed with <code class="function">g_list_free()</code>,
974 after its elements have been unreffed with <code class="function">g_object_unref()</code>. </p>
997 of <a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a>. The returned list should be freed with <a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#g-list-free"><code class="function">g_list_free()</code></a>,
998 after its elements have been unreffed with <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a>. </p>
975999 <p><span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> LibvirtGObject.Domain][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
9761000 </div>
9771001 </div>
9801004 <a name="gvir-connection-get-domain"></a><h3>gvir_connection_get_domain ()</h3>
9811005 <pre class="programlisting"><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="returnvalue">GVirDomain</span></a> *
9821006 gvir_connection_get_domain (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
983 <em class="parameter"><code>const <span class="type">gchar</span> *uuid</code></em>);</pre>
1007 <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *uuid</code></em>);</pre>
9841008 <div class="refsect3">
9851009 <a name="gvir-connection-get-domain.parameters"></a><h4>Parameters</h4>
9861010 <div class="informaltable"><table class="informaltable" width="100%" border="0">
10061030 <div class="refsect3">
10071031 <a name="gvir-connection-get-domain.returns"></a><h4>Returns</h4>
10081032 <p>the <a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a>, or NULL. The returned
1009 object should be unreffed with <code class="function">g_object_unref()</code> when no longer needed. </p>
1033 object should be unreffed with <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer needed. </p>
10101034 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
10111035 </div>
10121036 </div>
10151039 <a name="gvir-connection-find-domain-by-id"></a><h3>gvir_connection_find_domain_by_id ()</h3>
10161040 <pre class="programlisting"><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="returnvalue">GVirDomain</span></a> *
10171041 gvir_connection_find_domain_by_id (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1018 <em class="parameter"><code><span class="type">gint</span> id</code></em>);</pre>
1042 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>);</pre>
10191043 <div class="refsect3">
10201044 <a name="gvir-connection-find-domain-by-id.parameters"></a><h4>Parameters</h4>
10211045 <div class="informaltable"><table class="informaltable" width="100%" border="0">
10411065 <div class="refsect3">
10421066 <a name="gvir-connection-find-domain-by-id.returns"></a><h4>Returns</h4>
10431067 <p>the <a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a>, or NULL. The returned
1044 object should be unreffed with <code class="function">g_object_unref()</code> when no longer needed. </p>
1068 object should be unreffed with <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer needed. </p>
10451069 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
10461070 </div>
10471071 </div>
10501074 <a name="gvir-connection-find-domain-by-name"></a><h3>gvir_connection_find_domain_by_name ()</h3>
10511075 <pre class="programlisting"><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="returnvalue">GVirDomain</span></a> *
10521076 gvir_connection_find_domain_by_name (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1053 <em class="parameter"><code>const <span class="type">gchar</span> *name</code></em>);</pre>
1077 <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>);</pre>
10541078 <div class="refsect3">
10551079 <a name="gvir-connection-find-domain-by-name.parameters"></a><h4>Parameters</h4>
10561080 <div class="informaltable"><table class="informaltable" width="100%" border="0">
10761100 <div class="refsect3">
10771101 <a name="gvir-connection-find-domain-by-name.returns"></a><h4>Returns</h4>
10781102 <p>the <a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a>, or NULL. The returned
1079 object should be unreffed with <code class="function">g_object_unref()</code> when no longer needed. </p>
1103 object should be unreffed with <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer needed. </p>
10801104 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
10811105 </div>
10821106 </div>
10861110 <pre class="programlisting"><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="returnvalue">GVirDomain</span></a> *
10871111 gvir_connection_create_domain (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
10881112 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigDomain.html#GVirConfigDomain-struct"><span class="type">GVirConfigDomain</span></a> *conf</code></em>,
1089 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1113 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
10901114 <p>Create the configuration file for a new persistent domain.
10911115 The returned domain will initially be in the shutoff state.</p>
10921116 <div class="refsect3">
11141138 <div class="refsect3">
11151139 <a name="gvir-connection-create-domain.returns"></a><h4>Returns</h4>
11161140 <p>the newly created domain, or NULL if an error
1117 occurred. The returned object should be unreffed with <code class="function">g_object_unref()</code>
1141 occurred. The returned object should be unreffed with <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a>
11181142 when no longer needed. </p>
11191143 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
11201144 </div>
11251149 <pre class="programlisting"><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="returnvalue">GVirDomain</span></a> *
11261150 gvir_connection_start_domain (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
11271151 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigDomain.html#GVirConfigDomain-struct"><span class="type">GVirConfigDomain</span></a> *conf</code></em>,
1128 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
1129 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1152 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
1153 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
11301154 <p>Start a new transient domain without persistent configuration.
11311155 The returned domain will initially be running.</p>
11321156 <div class="refsect3">
11541178 <div class="refsect3">
11551179 <a name="gvir-connection-start-domain.returns"></a><h4>Returns</h4>
11561180 <p>the newly created domain, or NULL if an error
1157 occurred. The returned object should be unreffed with <code class="function">g_object_unref()</code>
1181 occurred. The returned object should be unreffed with <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a>
11581182 when no longer needed. </p>
11591183 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
11601184 </div>
11621186 <hr>
11631187 <div class="refsect2">
11641188 <a name="gvir-connection-fetch-interfaces"></a><h3>gvir_connection_fetch_interfaces ()</h3>
1165 <pre class="programlisting"><span class="returnvalue">gboolean</span>
1189 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
11661190 gvir_connection_fetch_interfaces (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1167 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
1168 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1191 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GCancellable.html#GCancellable-struct"><span class="type">GCancellable</span></a> *cancellable</code></em>,
1192 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
11691193 <p>Use this method to fetch information on all network interfaces
11701194 managed by connection <em class="parameter"><code>conn</code></em>
11711195 on host machine. Use
12001224 </div>
12011225 <div class="refsect3">
12021226 <a name="gvir-connection-fetch-interfaces.returns"></a><h4>Returns</h4>
1203 <p> <code class="literal">TRUE</code> on success, <code class="literal">FALSE</code> otherwise and <em class="parameter"><code>err</code></em>
1227 <p> <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> on success, <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise and <em class="parameter"><code>err</code></em>
12041228 is set.</p>
12051229 </div>
12061230 </div>
12101234 <pre class="programlisting"><span class="returnvalue">void</span>
12111235 gvir_connection_fetch_interfaces_async
12121236 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1213 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
1214 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
1215 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
1237 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GCancellable.html#GCancellable-struct"><span class="type">GCancellable</span></a> *cancellable</code></em>,
1238 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
1239 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
12161240 <div class="refsect3">
12171241 <a name="gvir-connection-fetch-interfaces-async.parameters"></a><h4>Parameters</h4>
12181242 <div class="informaltable"><table class="informaltable" width="100%" border="0">
12491273 <hr>
12501274 <div class="refsect2">
12511275 <a name="gvir-connection-fetch-interfaces-finish"></a><h3>gvir_connection_fetch_interfaces_finish ()</h3>
1252 <pre class="programlisting"><span class="returnvalue">gboolean</span>
1276 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
12531277 gvir_connection_fetch_interfaces_finish
12541278 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1255 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
1256 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1279 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncResult-struct"><span class="type">GAsyncResult</span></a> *result</code></em>,
1280 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
12571281 <div class="refsect3">
12581282 <a name="gvir-connection-fetch-interfaces-finish.parameters"></a><h4>Parameters</h4>
12591283 <div class="informaltable"><table class="informaltable" width="100%" border="0">
12851309 <hr>
12861310 <div class="refsect2">
12871311 <a name="gvir-connection-get-interfaces"></a><h3>gvir_connection_get_interfaces ()</h3>
1288 <pre class="programlisting"><span class="returnvalue">GList</span> *
1312 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
12891313 gvir_connection_get_interfaces (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>);</pre>
12901314 <p>Get a list of all the network interfaces managed by connection <em class="parameter"><code>conn</code></em>
12911315 on
13081332 <div class="refsect3">
13091333 <a name="gvir-connection-get-interfaces.returns"></a><h4>Returns</h4>
13101334 <p>List
1311 of <a class="link" href="GVirInterface.html" title="GVirInterface"><span class="type">GVirInterface</span></a>. The returned list should be freed with <code class="function">g_list_free()</code>,
1312 after its elements have been unreffed with <code class="function">g_object_unref()</code>. </p>
1335 of <a class="link" href="GVirInterface.html" title="GVirInterface"><span class="type">GVirInterface</span></a>. The returned list should be freed with <a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#g-list-free"><code class="function">g_list_free()</code></a>,
1336 after its elements have been unreffed with <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a>. </p>
13131337 <p><span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> LibvirtGObject.Interface][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
13141338 </div>
13151339 </div>
13181342 <a name="gvir-connection-get-interface"></a><h3>gvir_connection_get_interface ()</h3>
13191343 <pre class="programlisting"><a class="link" href="GVirInterface.html" title="GVirInterface"><span class="returnvalue">GVirInterface</span></a> *
13201344 gvir_connection_get_interface (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1321 <em class="parameter"><code>const <span class="type">gchar</span> *name</code></em>);</pre>
1345 <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>);</pre>
13221346 <p>Get a particular interface which has name <em class="parameter"><code>name</code></em>
13231347 .</p>
13241348 <div class="refsect3">
13481372 <p>A new reference to a <a class="link" href="GVirInterface.html" title="GVirInterface"><span class="type">GVirInterface</span></a>, or NULL
13491373 if no interface exists with name <em class="parameter"><code>name</code></em>
13501374 . The returned object must be unreffed
1351 using <code class="function">g_object_unref()</code> once used. </p>
1375 using <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> once used. </p>
13521376 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
13531377 </div>
13541378 </div>
13571381 <a name="gvir-connection-find-interface-by-mac"></a><h3>gvir_connection_find_interface_by_mac ()</h3>
13581382 <pre class="programlisting"><a class="link" href="GVirInterface.html" title="GVirInterface"><span class="returnvalue">GVirInterface</span></a> *
13591383 gvir_connection_find_interface_by_mac (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1360 <em class="parameter"><code>const <span class="type">gchar</span> *macaddr</code></em>);</pre>
1384 <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *macaddr</code></em>);</pre>
13611385 <p>Get a particular interface which has MAC address <em class="parameter"><code>mac</code></em>
13621386 .</p>
13631387 <div class="refsect3">
13871411 <p>A new reference to a <a class="link" href="GVirInterface.html" title="GVirInterface"><span class="type">GVirInterface</span></a>, or NULL
13881412 if no interface exists with MAC address <em class="parameter"><code>mac</code></em>
13891413 . The returned object must be
1390 unreffed using <code class="function">g_object_unref()</code> once used. </p>
1414 unreffed using <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> once used. </p>
13911415 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
13921416 </div>
13931417 </div>
13941418 <hr>
13951419 <div class="refsect2">
13961420 <a name="gvir-connection-fetch-networks"></a><h3>gvir_connection_fetch_networks ()</h3>
1397 <pre class="programlisting"><span class="returnvalue">gboolean</span>
1421 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
13981422 gvir_connection_fetch_networks (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1399 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
1400 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1423 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GCancellable.html#GCancellable-struct"><span class="type">GCancellable</span></a> *cancellable</code></em>,
1424 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
14011425 <p>Use this method to fetch all networks managed by connection
14021426 <em class="parameter"><code>conn</code></em>
14031427 . Use e.g. <a class="link" href="GVirConnection.html#gvir-connection-find-network-by-name" title="gvir_connection_find_network_by_name ()"><span class="type">gvir_connection_find_network_by_name</span></a> or
14311455 <a name="gvir-connection-fetch-networks-async"></a><h3>gvir_connection_fetch_networks_async ()</h3>
14321456 <pre class="programlisting"><span class="returnvalue">void</span>
14331457 gvir_connection_fetch_networks_async (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1434 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
1435 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
1436 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
1458 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GCancellable.html#GCancellable-struct"><span class="type">GCancellable</span></a> *cancellable</code></em>,
1459 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
1460 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
14371461 <div class="refsect3">
14381462 <a name="gvir-connection-fetch-networks-async.parameters"></a><h4>Parameters</h4>
14391463 <div class="informaltable"><table class="informaltable" width="100%" border="0">
14701494 <hr>
14711495 <div class="refsect2">
14721496 <a name="gvir-connection-fetch-networks-finish"></a><h3>gvir_connection_fetch_networks_finish ()</h3>
1473 <pre class="programlisting"><span class="returnvalue">gboolean</span>
1497 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
14741498 gvir_connection_fetch_networks_finish (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1475 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
1476 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1499 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncResult-struct"><span class="type">GAsyncResult</span></a> *result</code></em>,
1500 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
14771501 <div class="refsect3">
14781502 <a name="gvir-connection-fetch-networks-finish.parameters"></a><h4>Parameters</h4>
14791503 <div class="informaltable"><table class="informaltable" width="100%" border="0">
15051529 <hr>
15061530 <div class="refsect2">
15071531 <a name="gvir-connection-get-networks"></a><h3>gvir_connection_get_networks ()</h3>
1508 <pre class="programlisting"><span class="returnvalue">GList</span> *
1532 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
15091533 gvir_connection_get_networks (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>);</pre>
15101534 <p>Get a list of all the network networks available through <em class="parameter"><code>conn</code></em>
15111535 .</p>
15271551 <div class="refsect3">
15281552 <a name="gvir-connection-get-networks.returns"></a><h4>Returns</h4>
15291553 <p>List
1530 of <a class="link" href="GVirNetwork.html" title="GVirNetwork"><span class="type">GVirNetwork</span></a>. The returned list should be freed with <code class="function">g_list_free()</code>,
1531 after its elements have been unreffed with <code class="function">g_object_unref()</code>. </p>
1554 of <a class="link" href="GVirNetwork.html" title="GVirNetwork"><span class="type">GVirNetwork</span></a>. The returned list should be freed with <a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#g-list-free"><code class="function">g_list_free()</code></a>,
1555 after its elements have been unreffed with <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a>. </p>
15321556 <p><span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> LibvirtGObject.Network][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
15331557 </div>
15341558 </div>
15371561 <a name="gvir-connection-get-network"></a><h3>gvir_connection_get_network ()</h3>
15381562 <pre class="programlisting"><a class="link" href="GVirNetwork.html" title="GVirNetwork"><span class="returnvalue">GVirNetwork</span></a> *
15391563 gvir_connection_get_network (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1540 <em class="parameter"><code>const <span class="type">gchar</span> *uuid</code></em>);</pre>
1564 <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *uuid</code></em>);</pre>
15411565 <p>Get a particular network which has UUID <em class="parameter"><code>uuid</code></em>
15421566 .</p>
15431567 <div class="refsect3">
15671591 <p>A new reference to a <a class="link" href="GVirNetwork.html" title="GVirNetwork"><span class="type">GVirNetwork</span></a>, or NULL if
15681592 no network exists with UUID <em class="parameter"><code>uuid</code></em>
15691593 . The returned object must be unreffed using
1570 <code class="function">g_object_unref()</code> once used. </p>
1594 <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> once used. </p>
15711595 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
15721596 </div>
15731597 </div>
15761600 <a name="gvir-connection-find-network-by-name"></a><h3>gvir_connection_find_network_by_name ()</h3>
15771601 <pre class="programlisting"><a class="link" href="GVirNetwork.html" title="GVirNetwork"><span class="returnvalue">GVirNetwork</span></a> *
15781602 gvir_connection_find_network_by_name (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1579 <em class="parameter"><code>const <span class="type">gchar</span> *name</code></em>);</pre>
1603 <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>);</pre>
15801604 <p>Get a particular network which has name <em class="parameter"><code>name</code></em>
15811605 .</p>
15821606 <div class="refsect3">
16061630 <p>A new reference to a <a class="link" href="GVirNetwork.html" title="GVirNetwork"><span class="type">GVirNetwork</span></a>, or NULL if
16071631 no network exists with name <em class="parameter"><code>name</code></em>
16081632 . The returned object must be unreffed using
1609 <code class="function">g_object_unref()</code> once used. </p>
1633 <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> once used. </p>
16101634 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
16111635 </div>
16121636 </div>
16131637 <hr>
16141638 <div class="refsect2">
16151639 <a name="gvir-connection-get-network-filters"></a><h3>gvir_connection_get_network_filters ()</h3>
1616 <pre class="programlisting"><span class="returnvalue">GList</span> *
1640 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
16171641 gvir_connection_get_network_filters (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>);</pre>
16181642 </div>
16191643 <hr>
16211645 <a name="gvir-connection-get-network-filter"></a><h3>gvir_connection_get_network_filter ()</h3>
16221646 <pre class="programlisting"><a class="link" href="GVirNetworkFilter.html" title="GVirNetworkFilter"><span class="returnvalue">GVirNetworkFilter</span></a> *
16231647 gvir_connection_get_network_filter (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1624 <em class="parameter"><code>const <span class="type">gchar</span> *uuid</code></em>);</pre>
1648 <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *uuid</code></em>);</pre>
16251649 </div>
16261650 <hr>
16271651 <div class="refsect2">
16291653 <pre class="programlisting"><a class="link" href="GVirNetworkFilter.html" title="GVirNetworkFilter"><span class="returnvalue">GVirNetworkFilter</span></a> *
16301654 gvir_connection_find_network_filter_by_name
16311655 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1632 <em class="parameter"><code>const <span class="type">gchar</span> *name</code></em>);</pre>
1656 <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>);</pre>
16331657 </div>
16341658 <hr>
16351659 <div class="refsect2">
16361660 <a name="gvir-connection-get-node-devices"></a><h3>gvir_connection_get_node_devices ()</h3>
1637 <pre class="programlisting"><span class="returnvalue">GList</span> *
1661 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
16381662 gvir_connection_get_node_devices (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>);</pre>
16391663 </div>
16401664 <hr>
16421666 <a name="gvir-connection-get-node-device"></a><h3>gvir_connection_get_node_device ()</h3>
16431667 <pre class="programlisting"><a class="link" href="GVirNodeDevice.html" title="GVirNodeDevice"><span class="returnvalue">GVirNodeDevice</span></a> *
16441668 gvir_connection_get_node_device (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1645 <em class="parameter"><code>const <span class="type">gchar</span> *name</code></em>);</pre>
1669 <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>);</pre>
16461670 </div>
16471671 <hr>
16481672 <div class="refsect2">
16491673 <a name="gvir-connection-get-secrets"></a><h3>gvir_connection_get_secrets ()</h3>
1650 <pre class="programlisting"><span class="returnvalue">GList</span> *
1674 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
16511675 gvir_connection_get_secrets (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>);</pre>
16521676 </div>
16531677 <hr>
16551679 <a name="gvir-connection-get-secret"></a><h3>gvir_connection_get_secret ()</h3>
16561680 <pre class="programlisting"><a class="link" href="GVirSecret.html" title="GVirSecret"><span class="returnvalue">GVirSecret</span></a> *
16571681 gvir_connection_get_secret (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1658 <em class="parameter"><code>const <span class="type">gchar</span> *uuid</code></em>);</pre>
1682 <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *uuid</code></em>);</pre>
16591683 </div>
16601684 <hr>
16611685 <div class="refsect2">
16621686 <a name="gvir-connection-fetch-storage-pools"></a><h3>gvir_connection_fetch_storage_pools ()</h3>
1663 <pre class="programlisting"><span class="returnvalue">gboolean</span>
1687 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
16641688 gvir_connection_fetch_storage_pools (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1665 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
1666 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1689 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GCancellable.html#GCancellable-struct"><span class="type">GCancellable</span></a> *cancellable</code></em>,
1690 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
16671691 <p>Use this method to fetch all storage pools managed by connection
16681692 <em class="parameter"><code>conn</code></em>
16691693 . Use e.g. <a class="link" href="GVirConnection.html#gvir-connection-find-storage-pool-by-name" title="gvir_connection_find_storage_pool_by_name ()"><span class="type">gvir_connection_find_storage_pool_by_name</span></a> or
16981722 <pre class="programlisting"><span class="returnvalue">void</span>
16991723 gvir_connection_fetch_storage_pools_async
17001724 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1701 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
1702 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
1703 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
1725 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GCancellable.html#GCancellable-struct"><span class="type">GCancellable</span></a> *cancellable</code></em>,
1726 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
1727 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
17041728 <div class="refsect3">
17051729 <a name="gvir-connection-fetch-storage-pools-async.parameters"></a><h4>Parameters</h4>
17061730 <div class="informaltable"><table class="informaltable" width="100%" border="0">
17371761 <hr>
17381762 <div class="refsect2">
17391763 <a name="gvir-connection-fetch-storage-pools-finish"></a><h3>gvir_connection_fetch_storage_pools_finish ()</h3>
1740 <pre class="programlisting"><span class="returnvalue">gboolean</span>
1764 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
17411765 gvir_connection_fetch_storage_pools_finish
17421766 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1743 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
1744 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1767 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncResult-struct"><span class="type">GAsyncResult</span></a> *result</code></em>,
1768 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
17451769 <div class="refsect3">
17461770 <a name="gvir-connection-fetch-storage-pools-finish.parameters"></a><h4>Parameters</h4>
17471771 <div class="informaltable"><table class="informaltable" width="100%" border="0">
17681792 <hr>
17691793 <div class="refsect2">
17701794 <a name="gvir-connection-get-storage-pools"></a><h3>gvir_connection_get_storage_pools ()</h3>
1771 <pre class="programlisting"><span class="returnvalue">GList</span> *
1795 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
17721796 gvir_connection_get_storage_pools (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>);</pre>
17731797 <p>Gets a list of the storage pools available through <em class="parameter"><code>conn</code></em>
17741798 .</p>
17911815 <a name="gvir-connection-get-storage-pools.returns"></a><h4>Returns</h4>
17921816 <p>List
17931817 of <a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a>. The returned list should be freed with
1794 <code class="function">g_list_free()</code>, after its elements have been unreffed with
1795 <code class="function">g_object_unref()</code>. </p>
1818 <a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#g-list-free"><code class="function">g_list_free()</code></a>, after its elements have been unreffed with
1819 <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a>. </p>
17961820 <p><span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> LibvirtGObject.StoragePool][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
17971821 </div>
17981822 </div>
18011825 <a name="gvir-connection-get-storage-pool"></a><h3>gvir_connection_get_storage_pool ()</h3>
18021826 <pre class="programlisting"><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="returnvalue">GVirStoragePool</span></a> *
18031827 gvir_connection_get_storage_pool (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1804 <em class="parameter"><code>const <span class="type">gchar</span> *uuid</code></em>);</pre>
1828 <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *uuid</code></em>);</pre>
18051829 <div class="refsect3">
18061830 <a name="gvir-connection-get-storage-pool.parameters"></a><h4>Parameters</h4>
18071831 <div class="informaltable"><table class="informaltable" width="100%" border="0">
18271851 <div class="refsect3">
18281852 <a name="gvir-connection-get-storage-pool.returns"></a><h4>Returns</h4>
18291853 <p>the <a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a>, or NULL. The returned
1830 object should be unreffed with <code class="function">g_object_unref()</code> when no longer needed. </p>
1854 object should be unreffed with <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer needed. </p>
18311855 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
18321856 </div>
18331857 </div>
18371861 <pre class="programlisting"><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="returnvalue">GVirStoragePool</span></a> *
18381862 gvir_connection_find_storage_pool_by_name
18391863 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1840 <em class="parameter"><code>const <span class="type">gchar</span> *name</code></em>);</pre>
1864 <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>);</pre>
18411865 <div class="refsect3">
18421866 <a name="gvir-connection-find-storage-pool-by-name.parameters"></a><h4>Parameters</h4>
18431867 <div class="informaltable"><table class="informaltable" width="100%" border="0">
18631887 <div class="refsect3">
18641888 <a name="gvir-connection-find-storage-pool-by-name.returns"></a><h4>Returns</h4>
18651889 <p>the <a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a>, or NULL. The returned
1866 object should be unreffed with <code class="function">g_object_unref()</code> when no longer needed. </p>
1890 object should be unreffed with <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer needed. </p>
18671891 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
18681892 </div>
18691893 </div>
18731897 <pre class="programlisting"><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="returnvalue">GVirStoragePool</span></a> *
18741898 gvir_connection_create_storage_pool (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
18751899 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigStoragePool.html#GVirConfigStoragePool-struct"><span class="type">GVirConfigStoragePool</span></a> *conf</code></em>,
1876 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
1877 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1900 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
1901 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
18781902 <div class="refsect3">
18791903 <a name="gvir-connection-create-storage-pool.parameters"></a><h4>Parameters</h4>
18801904 <div class="informaltable"><table class="informaltable" width="100%" border="0">
19011925 </tr>
19021926 <tr>
19031927 <td class="parameter_name"><p>err</p></td>
1904 <td class="parameter_description"><p>return location for any <span class="type">GError</span></p></td>
1928 <td class="parameter_description"><p>return location for any <a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a></p></td>
19051929 <td class="parameter_annotations"> </td>
19061930 </tr>
19071931 </tbody>
19101934 <div class="refsect3">
19111935 <a name="gvir-connection-create-storage-pool.returns"></a><h4>Returns</h4>
19121936 <p>the newly created storage pool, or NULL if an
1913 error occurred. The returned list should be freed with <code class="function">g_list_free()</code>,
1914 after its elements have been unreffed with <code class="function">g_object_unref()</code>. </p>
1937 error occurred. The returned list should be freed with <a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#g-list-free"><code class="function">g_list_free()</code></a>,
1938 after its elements have been unreffed with <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a>. </p>
19151939 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
19161940 </div>
19171941 </div>
19201944 <a name="gvir-connection-get-stream"></a><h3>gvir_connection_get_stream ()</h3>
19211945 <pre class="programlisting"><a class="link" href="GVirStream.html" title="GVirStream"><span class="returnvalue">GVirStream</span></a> *
19221946 gvir_connection_get_stream (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1923 <em class="parameter"><code><span class="type">guint</span> flags</code></em>);</pre>
1947 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>);</pre>
19241948 <div class="refsect3">
19251949 <a name="gvir-connection-get-stream.parameters"></a><h4>Parameters</h4>
19261950 <div class="informaltable"><table class="informaltable" width="100%" border="0">
19461970 <div class="refsect3">
19471971 <a name="gvir-connection-get-stream.returns"></a><h4>Returns</h4>
19481972 <p>a <a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> stream, or NULL.The returned
1949 object should be unreffed with <code class="function">g_object_unref()</code> when no longer needed. </p>
1973 object should be unreffed with <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer needed. </p>
19501974 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
19511975 </div>
19521976 </div>
19551979 <a name="gvir-connection-get-node-info"></a><h3>gvir_connection_get_node_info ()</h3>
19561980 <pre class="programlisting"><a class="link" href="GVirConnection.html#GVirNodeInfo"><span class="returnvalue">GVirNodeInfo</span></a> *
19571981 gvir_connection_get_node_info (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1958 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1982 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
19591983 <div class="refsect3">
19601984 <a name="gvir-connection-get-node-info.parameters"></a><h4>Parameters</h4>
19611985 <div class="informaltable"><table class="informaltable" width="100%" border="0">
19721996 </tr>
19731997 <tr>
19741998 <td class="parameter_name"><p>err</p></td>
1975 <td class="parameter_description"><p>return location for any <span class="type">GError</span></p></td>
1999 <td class="parameter_description"><p>return location for any <a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a></p></td>
19762000 <td class="parameter_annotations"> </td>
19772001 </tr>
19782002 </tbody>
19812005 <div class="refsect3">
19822006 <a name="gvir-connection-get-node-info.returns"></a><h4>Returns</h4>
19832007 <p>the info, or NULL if an error occurred. The
1984 returned object should be unreffed with <code class="function">g_object_unref()</code> when no longer
2008 returned object should be unreffed with <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer
19852009 needed. </p>
19862010 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
19872011 </div>
19912015 <a name="gvir-connection-get-capabilities"></a><h3>gvir_connection_get_capabilities ()</h3>
19922016 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigCapabilities.html#GVirConfigCapabilities-struct"><span class="returnvalue">GVirConfigCapabilities</span></a> *
19932017 gvir_connection_get_capabilities (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1994 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
2018 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
19952019 <div class="refsect3">
19962020 <a name="gvir-connection-get-capabilities.parameters"></a><h4>Parameters</h4>
19972021 <div class="informaltable"><table class="informaltable" width="100%" border="0">
20082032 </tr>
20092033 <tr>
20102034 <td class="parameter_name"><p>err</p></td>
2011 <td class="parameter_description"><p>return location for any <span class="type">GError</span></p></td>
2035 <td class="parameter_description"><p>return location for any <a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a></p></td>
20122036 <td class="parameter_annotations"> </td>
20132037 </tr>
20142038 </tbody>
20172041 <div class="refsect3">
20182042 <a name="gvir-connection-get-capabilities.returns"></a><h4>Returns</h4>
20192043 <p>a <a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigCapabilities.html#GVirConfigCapabilities-struct"><span class="type">GVirConfigCapabilities</span></a> or NULL. The
2020 returned object should be unreffed with <code class="function">g_object_unref()</code> when no longer
2044 returned object should be unreffed with <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer
20212045 needed. </p>
20222046 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
20232047 </div>
20282052 <pre class="programlisting"><span class="returnvalue">void</span>
20292053 gvir_connection_get_capabilities_async
20302054 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
2031 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
2032 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
2033 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
2055 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GCancellable.html#GCancellable-struct"><span class="type">GCancellable</span></a> *cancellable</code></em>,
2056 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
2057 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
20342058 <div class="refsect3">
20352059 <a name="gvir-connection-get-capabilities-async.parameters"></a><h4>Parameters</h4>
20362060 <div class="informaltable"><table class="informaltable" width="100%" border="0">
20702094 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigCapabilities.html#GVirConfigCapabilities-struct"><span class="returnvalue">GVirConfigCapabilities</span></a> *
20712095 gvir_connection_get_capabilities_finish
20722096 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
2073 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
2074 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
2097 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncResult-struct"><span class="type">GAsyncResult</span></a> *result</code></em>,
2098 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
20752099 <div class="refsect3">
20762100 <a name="gvir-connection-get-capabilities-finish.parameters"></a><h4>Parameters</h4>
20772101 <div class="informaltable"><table class="informaltable" width="100%" border="0">
20972121 <div class="refsect3">
20982122 <a name="gvir-connection-get-capabilities-finish.returns"></a><h4>Returns</h4>
20992123 <p>a <a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigCapabilities.html#GVirConfigCapabilities-struct"><span class="type">GVirConfigCapabilities</span></a> or NULL. The
2100 returned object should be unreffed with <code class="function">g_object_unref()</code> when no longer
2124 returned object should be unreffed with <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer
21012125 needed. </p>
21022126 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
21032127 </div>
21052129 <hr>
21062130 <div class="refsect2">
21072131 <a name="gvir-connection-restore-domain-from-file"></a><h3>gvir_connection_restore_domain_from_file ()</h3>
2108 <pre class="programlisting"><span class="returnvalue">gboolean</span>
2132 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
21092133 gvir_connection_restore_domain_from_file
21102134 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
2111 <em class="parameter"><code><span class="type">gchar</span> *filename</code></em>,
2135 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *filename</code></em>,
21122136 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigDomain.html#GVirConfigDomain-struct"><span class="type">GVirConfigDomain</span></a> *custom_conf</code></em>,
2113 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
2114 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
2137 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
2138 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
21152139 <p>Restores the domain saved with <a class="link" href="GVirDomain.html#gvir-domain-save-to-file" title="gvir_domain_save_to_file ()"><span class="type">gvir_domain_save_to_file</span></a></p>
21162140 <div class="refsect3">
21172141 <a name="gvir-connection-restore-domain-from-file.parameters"></a><h4>Parameters</h4>
21562180 <pre class="programlisting"><span class="returnvalue">void</span>
21572181 gvir_connection_restore_domain_from_file_async
21582182 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
2159 <em class="parameter"><code><span class="type">gchar</span> *filename</code></em>,
2183 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *filename</code></em>,
21602184 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigDomain.html#GVirConfigDomain-struct"><span class="type">GVirConfigDomain</span></a> *custom_conf</code></em>,
2161 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
2162 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
2163 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
2164 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
2185 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
2186 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GCancellable.html#GCancellable-struct"><span class="type">GCancellable</span></a> *cancellable</code></em>,
2187 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
2188 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
21652189 <p>Asynchronous variant of <a class="link" href="GVirConnection.html#gvir-connection-restore-domain-from-file" title="gvir_connection_restore_domain_from_file ()"><span class="type">gvir_connection_restore_domain_from_file</span></a></p>
21662190 <div class="refsect3">
21672191 <a name="gvir-connection-restore-domain-from-file-async.parameters"></a><h4>Parameters</h4>
22142238 <hr>
22152239 <div class="refsect2">
22162240 <a name="gvir-connection-restore-domain-from-file-finish"></a><h3>gvir_connection_restore_domain_from_file_finish ()</h3>
2217 <pre class="programlisting"><span class="returnvalue">gboolean</span>
2241 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
22182242 gvir_connection_restore_domain_from_file_finish
22192243 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
2220 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
2221 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
2244 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncResult-struct"><span class="type">GAsyncResult</span></a> *result</code></em>,
2245 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
22222246 <p>Finishes the operation started by <span class="type">gvir_restore_domain_from_file_async</span>.</p>
22232247 <div class="refsect3">
22242248 <a name="gvir-connection-restore-domain-from-file-finish.parameters"></a><h4>Parameters</h4>
22502274 <div class="refsect3">
22512275 <a name="gvir-connection-restore-domain-from-file-finish.returns"></a><h4>Returns</h4>
22522276 <p> TRUE if domain was restored successfully, FALSE otherwise.</p>
2277 </div>
2278 </div>
2279 <hr>
2280 <div class="refsect2">
2281 <a name="gvir-connection-get-domain-capabilities"></a><h3>gvir_connection_get_domain_capabilities ()</h3>
2282 <pre class="programlisting"><span class="returnvalue">GVirConfigDomainCapabilities</span> *
2283 gvir_connection_get_domain_capabilities
2284 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
2285 <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *emulatorbin</code></em>,
2286 <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *arch</code></em>,
2287 <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *machine</code></em>,
2288 <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *virttype</code></em>,
2289 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
2290 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
2291 <div class="refsect3">
2292 <a name="gvir-connection-get-domain-capabilities.parameters"></a><h4>Parameters</h4>
2293 <div class="informaltable"><table class="informaltable" width="100%" border="0">
2294 <colgroup>
2295 <col width="150px" class="parameters_name">
2296 <col class="parameters_description">
2297 <col width="200px" class="parameters_annotations">
2298 </colgroup>
2299 <tbody>
2300 <tr>
2301 <td class="parameter_name"><p>conn</p></td>
2302 <td class="parameter_description"><p>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a></p></td>
2303 <td class="parameter_annotations"> </td>
2304 </tr>
2305 <tr>
2306 <td class="parameter_name"><p>emulatorbin</p></td>
2307 <td class="parameter_description"><p>path to emulator. </p></td>
2308 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
2309 </tr>
2310 <tr>
2311 <td class="parameter_name"><p>arch</p></td>
2312 <td class="parameter_description"><p>domain architecture. </p></td>
2313 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
2314 </tr>
2315 <tr>
2316 <td class="parameter_name"><p>machine</p></td>
2317 <td class="parameter_description"><p>machine type. </p></td>
2318 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
2319 </tr>
2320 <tr>
2321 <td class="parameter_name"><p>virttype</p></td>
2322 <td class="parameter_description"><p>virtualization type. </p></td>
2323 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
2324 </tr>
2325 <tr>
2326 <td class="parameter_name"><p>flags</p></td>
2327 <td class="parameter_description"><p>extra flags; not used yet, so callers should always pass 0</p></td>
2328 <td class="parameter_annotations"> </td>
2329 </tr>
2330 <tr>
2331 <td class="parameter_name"><p>err</p></td>
2332 <td class="parameter_description"><p>return location for any <a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a></p></td>
2333 <td class="parameter_annotations"> </td>
2334 </tr>
2335 </tbody>
2336 </table></div>
2337 </div>
2338 <div class="refsect3">
2339 <a name="gvir-connection-get-domain-capabilities.returns"></a><h4>Returns</h4>
2340 <p>a <span class="type">GVirConfigDomainCapabilities</span> or NULL.
2341 The return object should be unreffed with <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer
2342 needed. </p>
2343 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
2344 </div>
2345 </div>
2346 <hr>
2347 <div class="refsect2">
2348 <a name="gvir-connection-get-domain-capabilities-async"></a><h3>gvir_connection_get_domain_capabilities_async ()</h3>
2349 <pre class="programlisting"><span class="returnvalue">void</span>
2350 gvir_connection_get_domain_capabilities_async
2351 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
2352 <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *emulatorbin</code></em>,
2353 <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *arch</code></em>,
2354 <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *machine</code></em>,
2355 <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *virttype</code></em>,
2356 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
2357 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GCancellable.html#GCancellable-struct"><span class="type">GCancellable</span></a> *cancellable</code></em>,
2358 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
2359 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
2360 <div class="refsect3">
2361 <a name="gvir-connection-get-domain-capabilities-async.parameters"></a><h4>Parameters</h4>
2362 <div class="informaltable"><table class="informaltable" width="100%" border="0">
2363 <colgroup>
2364 <col width="150px" class="parameters_name">
2365 <col class="parameters_description">
2366 <col width="200px" class="parameters_annotations">
2367 </colgroup>
2368 <tbody>
2369 <tr>
2370 <td class="parameter_name"><p>conn</p></td>
2371 <td class="parameter_description"><p>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a></p></td>
2372 <td class="parameter_annotations"> </td>
2373 </tr>
2374 <tr>
2375 <td class="parameter_name"><p>emulatorbin</p></td>
2376 <td class="parameter_description"><p>path to emulator. </p></td>
2377 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
2378 </tr>
2379 <tr>
2380 <td class="parameter_name"><p>arch</p></td>
2381 <td class="parameter_description"><p>domain architecture. </p></td>
2382 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
2383 </tr>
2384 <tr>
2385 <td class="parameter_name"><p>machine</p></td>
2386 <td class="parameter_description"><p>machine type. </p></td>
2387 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
2388 </tr>
2389 <tr>
2390 <td class="parameter_name"><p>virttype</p></td>
2391 <td class="parameter_description"><p>virtualization type. </p></td>
2392 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
2393 </tr>
2394 <tr>
2395 <td class="parameter_name"><p>flags</p></td>
2396 <td class="parameter_description"><p>extra flags; not used yet, so callers should always pass 0</p></td>
2397 <td class="parameter_annotations"> </td>
2398 </tr>
2399 <tr>
2400 <td class="parameter_name"><p>cancellable</p></td>
2401 <td class="parameter_description"><p>cancellation object. </p></td>
2402 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
2403 </tr>
2404 <tr>
2405 <td class="parameter_name"><p>callback</p></td>
2406 <td class="parameter_description"><p>completion callback. </p></td>
2407 <td class="parameter_annotations"><span class="annotation">[<acronym title="The callback is valid until first called."><span class="acronym">scope async</span></acronym>]</span></td>
2408 </tr>
2409 <tr>
2410 <td class="parameter_name"><p>user_data</p></td>
2411 <td class="parameter_description"><p>opaque data for callback. </p></td>
2412 <td class="parameter_annotations"><span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span></td>
2413 </tr>
2414 </tbody>
2415 </table></div>
2416 </div>
2417 </div>
2418 <hr>
2419 <div class="refsect2">
2420 <a name="gvir-connection-get-domain-capabilities-finish"></a><h3>gvir_connection_get_domain_capabilities_finish ()</h3>
2421 <pre class="programlisting"><span class="returnvalue">GVirConfigDomainCapabilities</span> *
2422 gvir_connection_get_domain_capabilities_finish
2423 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
2424 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncResult-struct"><span class="type">GAsyncResult</span></a> *result</code></em>,
2425 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
2426 <div class="refsect3">
2427 <a name="gvir-connection-get-domain-capabilities-finish.parameters"></a><h4>Parameters</h4>
2428 <div class="informaltable"><table class="informaltable" width="100%" border="0">
2429 <colgroup>
2430 <col width="150px" class="parameters_name">
2431 <col class="parameters_description">
2432 <col width="200px" class="parameters_annotations">
2433 </colgroup>
2434 <tbody>
2435 <tr>
2436 <td class="parameter_name"><p>conn</p></td>
2437 <td class="parameter_description"><p>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a></p></td>
2438 <td class="parameter_annotations"> </td>
2439 </tr>
2440 <tr>
2441 <td class="parameter_name"><p>result</p></td>
2442 <td class="parameter_description"><p>async method result. </p></td>
2443 <td class="parameter_annotations"><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
2444 </tr>
2445 </tbody>
2446 </table></div>
2447 </div>
2448 <div class="refsect3">
2449 <a name="gvir-connection-get-domain-capabilities-finish.returns"></a><h4>Returns</h4>
2450 <p>a <span class="type">GVirConfigDomainCapabilities</span> or NULL.
2451 The returned object should be unreffed with <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no
2452 longer needed. </p>
2453 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
22532454 </div>
22542455 </div>
22552456 </div>
22672468 <hr>
22682469 <div class="refsect2">
22692470 <a name="GVirConnection--uri"></a><h3>The <code class="literal">“uri”</code> property</h3>
2270 <pre class="programlisting"> “uri” <span class="type">gchar</span> *</pre>
2471 <pre class="programlisting"> “uri” <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</pre>
22712472 <p>The connection URI.</p>
22722473 <p>Flags: Read / Write / Construct Only</p>
22732474 <p>Default value: NULL</p>
22792480 <a name="GVirConnection-connection-closed"></a><h3>The <code class="literal">“connection-closed”</code> signal</h3>
22802481 <pre class="programlisting"><span class="returnvalue">void</span>
22812482 user_function (<a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *gvirconnection,
2282 <span class="type">gpointer</span> user_data)</pre>
2283 <p>Flags: Run First</p>
2483 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2484 <p>Flags: <a href="/usr/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-RUN-FIRST:CAPS">Run First</a></p>
22842485 </div>
22852486 <hr>
22862487 <div class="refsect2">
22872488 <a name="GVirConnection-connection-opened"></a><h3>The <code class="literal">“connection-opened”</code> signal</h3>
22882489 <pre class="programlisting"><span class="returnvalue">void</span>
22892490 user_function (<a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *gvirconnection,
2290 <span class="type">gpointer</span> user_data)</pre>
2291 <p>Flags: Run First</p>
2491 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2492 <p>Flags: <a href="/usr/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-RUN-FIRST:CAPS">Run First</a></p>
22922493 </div>
22932494 <hr>
22942495 <div class="refsect2">
22962497 <pre class="programlisting"><span class="returnvalue">void</span>
22972498 user_function (<a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *gvirconnection,
22982499 <a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *arg1,
2299 <span class="type">gpointer</span> user_data)</pre>
2300 <p>Flags: Run First</p>
2500 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2501 <p>Flags: <a href="/usr/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-RUN-FIRST:CAPS">Run First</a></p>
23012502 </div>
23022503 <hr>
23032504 <div class="refsect2">
23052506 <pre class="programlisting"><span class="returnvalue">void</span>
23062507 user_function (<a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *gvirconnection,
23072508 <a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *arg1,
2308 <span class="type">gpointer</span> user_data)</pre>
2309 <p>Flags: Run First</p>
2509 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2510 <p>Flags: <a href="/usr/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-RUN-FIRST:CAPS">Run First</a></p>
23102511 </div>
23112512 </div>
23122513 </div>
23132514 <div class="footer">
2314 <hr>Generated by GTK-Doc V1.28</div>
2515 <hr>Generated by GTK-Doc V1.29</div>
23152516 </body>
23162517 </html>
77 <link rel="up" href="ch01.html" title="Libvirt-gobject">
88 <link rel="prev" href="GVirConnection.html" title="GVirConnection">
99 <link rel="next" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot">
10 <meta name="generator" content="GTK-Doc V1.28 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.29 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
4242 </colgroup>
4343 <tbody>
4444 <tr>
45 <td class="function_type">const <span class="returnvalue">gchar</span> *
45 <td class="function_type">const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
4646 </td>
4747 <td class="function_name">
4848 <a class="link" href="GVirDomain.html#gvir-domain-get-name" title="gvir_domain_get_name ()">gvir_domain_get_name</a> <span class="c_punctuation">()</span>
4949 </td>
5050 </tr>
5151 <tr>
52 <td class="function_type">const <span class="returnvalue">gchar</span> *
52 <td class="function_type">const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
5353 </td>
5454 <td class="function_name">
5555 <a class="link" href="GVirDomain.html#gvir-domain-get-uuid" title="gvir_domain_get_uuid ()">gvir_domain_get_uuid</a> <span class="c_punctuation">()</span>
5757 </tr>
5858 <tr>
5959 <td class="function_type">
60 <span class="returnvalue">gint</span>
60 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
6161 </td>
6262 <td class="function_name">
6363 <a class="link" href="GVirDomain.html#gvir-domain-get-id" title="gvir_domain_get_id ()">gvir_domain_get_id</a> <span class="c_punctuation">()</span>
6565 </tr>
6666 <tr>
6767 <td class="function_type">
68 <span class="returnvalue">gboolean</span>
68 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
6969 </td>
7070 <td class="function_name">
7171 <a class="link" href="GVirDomain.html#gvir-domain-start" title="gvir_domain_start ()">gvir_domain_start</a> <span class="c_punctuation">()</span>
8181 </tr>
8282 <tr>
8383 <td class="function_type">
84 <span class="returnvalue">gboolean</span>
84 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
8585 </td>
8686 <td class="function_name">
8787 <a class="link" href="GVirDomain.html#gvir-domain-start-finish" title="gvir_domain_start_finish ()">gvir_domain_start_finish</a> <span class="c_punctuation">()</span>
8989 </tr>
9090 <tr>
9191 <td class="function_type">
92 <span class="returnvalue">gboolean</span>
92 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
9393 </td>
9494 <td class="function_name">
9595 <a class="link" href="GVirDomain.html#gvir-domain-resume" title="gvir_domain_resume ()">gvir_domain_resume</a> <span class="c_punctuation">()</span>
105105 </tr>
106106 <tr>
107107 <td class="function_type">
108 <span class="returnvalue">gboolean</span>
108 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
109109 </td>
110110 <td class="function_name">
111111 <a class="link" href="GVirDomain.html#gvir-domain-resume-finish" title="gvir_domain_resume_finish ()">gvir_domain_resume_finish</a> <span class="c_punctuation">()</span>
113113 </tr>
114114 <tr>
115115 <td class="function_type">
116 <span class="returnvalue">gboolean</span>
116 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
117117 </td>
118118 <td class="function_name">
119119 <a class="link" href="GVirDomain.html#gvir-domain-wakeup" title="gvir_domain_wakeup ()">gvir_domain_wakeup</a> <span class="c_punctuation">()</span>
129129 </tr>
130130 <tr>
131131 <td class="function_type">
132 <span class="returnvalue">gboolean</span>
132 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
133133 </td>
134134 <td class="function_name">
135135 <a class="link" href="GVirDomain.html#gvir-domain-wakeup-finish" title="gvir_domain_wakeup_finish ()">gvir_domain_wakeup_finish</a> <span class="c_punctuation">()</span>
137137 </tr>
138138 <tr>
139139 <td class="function_type">
140 <span class="returnvalue">gboolean</span>
140 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
141141 </td>
142142 <td class="function_name">
143143 <a class="link" href="GVirDomain.html#gvir-domain-stop" title="gvir_domain_stop ()">gvir_domain_stop</a> <span class="c_punctuation">()</span>
145145 </tr>
146146 <tr>
147147 <td class="function_type">
148 <span class="returnvalue">gboolean</span>
148 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
149149 </td>
150150 <td class="function_name">
151151 <a class="link" href="GVirDomain.html#gvir-domain-delete" title="gvir_domain_delete ()">gvir_domain_delete</a> <span class="c_punctuation">()</span>
153153 </tr>
154154 <tr>
155155 <td class="function_type">
156 <span class="returnvalue">gboolean</span>
156 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
157157 </td>
158158 <td class="function_name">
159159 <a class="link" href="GVirDomain.html#gvir-domain-shutdown" title="gvir_domain_shutdown ()">gvir_domain_shutdown</a> <span class="c_punctuation">()</span>
161161 </tr>
162162 <tr>
163163 <td class="function_type">
164 <span class="returnvalue">gboolean</span>
164 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
165165 </td>
166166 <td class="function_name">
167167 <a class="link" href="GVirDomain.html#gvir-domain-reboot" title="gvir_domain_reboot ()">gvir_domain_reboot</a> <span class="c_punctuation">()</span>
169169 </tr>
170170 <tr>
171171 <td class="function_type">
172 <span class="returnvalue">gboolean</span>
172 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
173173 </td>
174174 <td class="function_name">
175175 <a class="link" href="GVirDomain.html#gvir-domain-save-to-file" title="gvir_domain_save_to_file ()">gvir_domain_save_to_file</a> <span class="c_punctuation">()</span>
185185 </tr>
186186 <tr>
187187 <td class="function_type">
188 <span class="returnvalue">gboolean</span>
188 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
189189 </td>
190190 <td class="function_name">
191191 <a class="link" href="GVirDomain.html#gvir-domain-save-to-file-finish" title="gvir_domain_save_to_file_finish ()">gvir_domain_save_to_file_finish</a> <span class="c_punctuation">()</span>
225225 </tr>
226226 <tr>
227227 <td class="function_type">
228 <span class="returnvalue">gboolean</span>
228 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
229229 </td>
230230 <td class="function_name">
231231 <a class="link" href="GVirDomain.html#gvir-domain-set-config" title="gvir_domain_set_config ()">gvir_domain_set_config</a> <span class="c_punctuation">()</span>
233233 </tr>
234234 <tr>
235235 <td class="function_type">
236 <span class="returnvalue">gchar</span> *
236 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
237237 </td>
238238 <td class="function_name">
239239 <a class="link" href="GVirDomain.html#gvir-domain-screenshot" title="gvir_domain_screenshot ()">gvir_domain_screenshot</a> <span class="c_punctuation">()</span>
241241 </tr>
242242 <tr>
243243 <td class="function_type">
244 <span class="returnvalue">gboolean</span>
244 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
245245 </td>
246246 <td class="function_name">
247247 <a class="link" href="GVirDomain.html#gvir-domain-open-console" title="gvir_domain_open_console ()">gvir_domain_open_console</a> <span class="c_punctuation">()</span>
249249 </tr>
250250 <tr>
251251 <td class="function_type">
252 <span class="returnvalue">gboolean</span>
252 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
253253 </td>
254254 <td class="function_name">
255255 <a class="link" href="GVirDomain.html#gvir-domain-open-graphics" title="gvir_domain_open_graphics ()">gvir_domain_open_graphics</a> <span class="c_punctuation">()</span>
265265 </tr>
266266 <tr>
267267 <td class="function_type">
268 <span class="returnvalue">gboolean</span>
268 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
269269 </td>
270270 <td class="function_name">
271271 <a class="link" href="GVirDomain.html#gvir-domain-suspend" title="gvir_domain_suspend ()">gvir_domain_suspend</a> <span class="c_punctuation">()</span>
273273 </tr>
274274 <tr>
275275 <td class="function_type">
276 <span class="returnvalue">gboolean</span>
276 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
277277 </td>
278278 <td class="function_name">
279279 <a class="link" href="GVirDomain.html#gvir-domain-save" title="gvir_domain_save ()">gvir_domain_save</a> <span class="c_punctuation">()</span>
289289 </tr>
290290 <tr>
291291 <td class="function_type">
292 <span class="returnvalue">gboolean</span>
292 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
293293 </td>
294294 <td class="function_name">
295295 <a class="link" href="GVirDomain.html#gvir-domain-save-finish" title="gvir_domain_save_finish ()">gvir_domain_save_finish</a> <span class="c_punctuation">()</span>
297297 </tr>
298298 <tr>
299299 <td class="function_type">
300 <span class="returnvalue">gboolean</span>
300 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
301301 </td>
302302 <td class="function_name">
303303 <a class="link" href="GVirDomain.html#gvir-domain-get-persistent" title="gvir_domain_get_persistent ()">gvir_domain_get_persistent</a> <span class="c_punctuation">()</span>
305305 </tr>
306306 <tr>
307307 <td class="function_type">
308 <span class="returnvalue">gboolean</span>
308 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
309309 </td>
310310 <td class="function_name">
311311 <a class="link" href="GVirDomain.html#gvir-domain-get-saved" title="gvir_domain_get_saved ()">gvir_domain_get_saved</a> <span class="c_punctuation">()</span>
313313 </tr>
314314 <tr>
315315 <td class="function_type">
316 <span class="returnvalue">GList</span> *
316 <a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
317317 </td>
318318 <td class="function_name">
319319 <a class="link" href="GVirDomain.html#gvir-domain-get-devices" title="gvir_domain_get_devices ()">gvir_domain_get_devices</a> <span class="c_punctuation">()</span>
321321 </tr>
322322 <tr>
323323 <td class="function_type">
324 <span class="returnvalue">gboolean</span>
324 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
325325 </td>
326326 <td class="function_name">
327327 <a class="link" href="GVirDomain.html#gvir-domain-update-device" title="gvir_domain_update_device ()">gvir_domain_update_device</a> <span class="c_punctuation">()</span>
353353 </tr>
354354 <tr>
355355 <td class="function_type">
356 <span class="returnvalue">gboolean</span>
356 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
357357 </td>
358358 <td class="function_name">
359359 <a class="link" href="GVirDomain.html#gvir-domain-fetch-snapshots" title="gvir_domain_fetch_snapshots ()">gvir_domain_fetch_snapshots</a> <span class="c_punctuation">()</span>
361361 </tr>
362362 <tr>
363363 <td class="function_type">
364 <span class="returnvalue">GList</span> *
364 <a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
365365 </td>
366366 <td class="function_name">
367367 <a class="link" href="GVirDomain.html#gvir-domain-get-snapshots" title="gvir_domain_get_snapshots ()">gvir_domain_get_snapshots</a> <span class="c_punctuation">()</span>
377377 </tr>
378378 <tr>
379379 <td class="function_type">
380 <span class="returnvalue">gboolean</span>
380 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
381381 </td>
382382 <td class="function_name">
383383 <a class="link" href="GVirDomain.html#gvir-domain-fetch-snapshots-finish" title="gvir_domain_fetch_snapshots_finish ()">gvir_domain_fetch_snapshots_finish</a> <span class="c_punctuation">()</span>
385385 </tr>
386386 <tr>
387387 <td class="function_type">
388 <span class="returnvalue">gboolean</span>
388 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
389389 </td>
390390 <td class="function_name">
391391 <a class="link" href="GVirDomain.html#gvir-domain-get-has-current-snapshot" title="gvir_domain_get_has_current_snapshot ()">gvir_domain_get_has_current_snapshot</a> <span class="c_punctuation">()</span>
393393 </tr>
394394 <tr>
395395 <td class="function_type">
396 <span class="returnvalue">gboolean</span>
396 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
397397 </td>
398398 <td class="function_name">
399399 <a class="link" href="GVirDomain.html#gvir-domain-set-time" title="gvir_domain_set_time ()">gvir_domain_set_time</a> <span class="c_punctuation">()</span>
409409 </tr>
410410 <tr>
411411 <td class="function_type">
412 <span class="returnvalue">gboolean</span>
412 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
413413 </td>
414414 <td class="function_name">
415415 <a class="link" href="GVirDomain.html#gvir-domain-set-time-finish" title="gvir_domain_set_time_finish ()">gvir_domain_set_time_finish</a> <span class="c_punctuation">()</span>
434434 <td class="property_flags">Read / Write / Construct Only</td>
435435 </tr>
436436 <tr>
437 <td class="property_type"><span class="type">gboolean</span></td>
437 <td class="property_type"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
438438 <td class="property_name"><a class="link" href="GVirDomain.html#GVirDomain--persistent" title="The “persistent” property">persistent</a></td>
439439 <td class="property_flags">Read</td>
440440 </tr>
453453 <tr>
454454 <td class="signal_type"><span class="returnvalue">void</span></td>
455455 <td class="signal_name"><a class="link" href="GVirDomain.html#GVirDomain-pmsuspended" title="The “pmsuspended” signal">pmsuspended</a></td>
456 <td class="signal_flags">No Hooks</td>
456 <td class="signal_flags"><a href="/usr/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-NO-HOOKS:CAPS">No Hooks</a></td>
457457 </tr>
458458 <tr>
459459 <td class="signal_type"><span class="returnvalue">void</span></td>
460460 <td class="signal_name"><a class="link" href="GVirDomain.html#GVirDomain-resumed" title="The “resumed” signal">resumed</a></td>
461 <td class="signal_flags">No Hooks</td>
461 <td class="signal_flags"><a href="/usr/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-NO-HOOKS:CAPS">No Hooks</a></td>
462462 </tr>
463463 <tr>
464464 <td class="signal_type"><span class="returnvalue">void</span></td>
465465 <td class="signal_name"><a class="link" href="GVirDomain.html#GVirDomain-started" title="The “started” signal">started</a></td>
466 <td class="signal_flags">No Hooks</td>
466 <td class="signal_flags"><a href="/usr/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-NO-HOOKS:CAPS">No Hooks</a></td>
467467 </tr>
468468 <tr>
469469 <td class="signal_type"><span class="returnvalue">void</span></td>
470470 <td class="signal_name"><a class="link" href="GVirDomain.html#GVirDomain-stopped" title="The “stopped” signal">stopped</a></td>
471 <td class="signal_flags">No Hooks</td>
471 <td class="signal_flags"><a href="/usr/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-NO-HOOKS:CAPS">No Hooks</a></td>
472472 </tr>
473473 <tr>
474474 <td class="signal_type"><span class="returnvalue">void</span></td>
475475 <td class="signal_name"><a class="link" href="GVirDomain.html#GVirDomain-suspended" title="The “suspended” signal">suspended</a></td>
476 <td class="signal_flags">No Hooks</td>
476 <td class="signal_flags"><a href="/usr/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-NO-HOOKS:CAPS">No Hooks</a></td>
477477 </tr>
478478 <tr>
479479 <td class="signal_type"><span class="returnvalue">void</span></td>
480480 <td class="signal_name"><a class="link" href="GVirDomain.html#GVirDomain-updated" title="The “updated” signal">updated</a></td>
481 <td class="signal_flags">No Hooks</td>
481 <td class="signal_flags"><a href="/usr/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-NO-HOOKS:CAPS">No Hooks</a></td>
482482 </tr>
483483 </tbody>
484484 </table></div>
534534 <a name="GVirDomain.object-hierarchy"></a><h2>Object Hierarchy</h2>
535535 <pre class="screen"> <a href="/usr/share/gtk-doc/html/gobject/gobject-Boxed-Types.html">GBoxed</a>
536536 <span class="lineart">╰──</span> GVirDomainInfo
537 GObject
537 <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a>
538538 <span class="lineart">╰──</span> GVirDomain
539539 </pre>
540540 </div>
545545 <a name="GVirDomain.functions_details"></a><h2>Functions</h2>
546546 <div class="refsect2">
547547 <a name="gvir-domain-get-name"></a><h3>gvir_domain_get_name ()</h3>
548 <pre class="programlisting">const <span class="returnvalue">gchar</span> *
548 <pre class="programlisting">const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
549549 gvir_domain_get_name (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>);</pre>
550550 </div>
551551 <hr>
552552 <div class="refsect2">
553553 <a name="gvir-domain-get-uuid"></a><h3>gvir_domain_get_uuid ()</h3>
554 <pre class="programlisting">const <span class="returnvalue">gchar</span> *
554 <pre class="programlisting">const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
555555 gvir_domain_get_uuid (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>);</pre>
556556 </div>
557557 <hr>
558558 <div class="refsect2">
559559 <a name="gvir-domain-get-id"></a><h3>gvir_domain_get_id ()</h3>
560 <pre class="programlisting"><span class="returnvalue">gint</span>
560 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
561561 gvir_domain_get_id (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
562 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
562 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
563563 </div>
564564 <hr>
565565 <div class="refsect2">
566566 <a name="gvir-domain-start"></a><h3>gvir_domain_start ()</h3>
567 <pre class="programlisting"><span class="returnvalue">gboolean</span>
567 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
568568 gvir_domain_start (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
569 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
570 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
569 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
570 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
571571 <div class="refsect3">
572572 <a name="gvir-domain-start.parameters"></a><h4>Parameters</h4>
573573 <div class="informaltable"><table class="informaltable" width="100%" border="0">
596596 <a name="gvir-domain-start-async"></a><h3>gvir_domain_start_async ()</h3>
597597 <pre class="programlisting"><span class="returnvalue">void</span>
598598 gvir_domain_start_async (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
599 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
600 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
601 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
602 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
599 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
600 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GCancellable.html#GCancellable-struct"><span class="type">GCancellable</span></a> *cancellable</code></em>,
601 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
602 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
603603 <p>Asynchronous variant of <a class="link" href="GVirDomain.html#gvir-domain-start" title="gvir_domain_start ()"><span class="type">gvir_domain_start</span></a>.</p>
604604 <div class="refsect3">
605605 <a name="gvir-domain-start-async.parameters"></a><h4>Parameters</h4>
642642 <hr>
643643 <div class="refsect2">
644644 <a name="gvir-domain-start-finish"></a><h3>gvir_domain_start_finish ()</h3>
645 <pre class="programlisting"><span class="returnvalue">gboolean</span>
645 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
646646 gvir_domain_start_finish (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
647 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
648 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
647 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncResult-struct"><span class="type">GAsyncResult</span></a> *result</code></em>,
648 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
649649 </div>
650650 <hr>
651651 <div class="refsect2">
652652 <a name="gvir-domain-resume"></a><h3>gvir_domain_resume ()</h3>
653 <pre class="programlisting"><span class="returnvalue">gboolean</span>
653 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
654654 gvir_domain_resume (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
655 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
655 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
656656 <div class="refsect3">
657657 <a name="gvir-domain-resume.parameters"></a><h4>Parameters</h4>
658658 <div class="informaltable"><table class="informaltable" width="100%" border="0">
685685 <a name="gvir-domain-resume-async"></a><h3>gvir_domain_resume_async ()</h3>
686686 <pre class="programlisting"><span class="returnvalue">void</span>
687687 gvir_domain_resume_async (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
688 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
689 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
690 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
688 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GCancellable.html#GCancellable-struct"><span class="type">GCancellable</span></a> *cancellable</code></em>,
689 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
690 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
691691 <p>Asynchronous variant of <a class="link" href="GVirDomain.html#gvir-domain-resume" title="gvir_domain_resume ()"><span class="type">gvir_domain_resume</span></a>.</p>
692692 <div class="refsect3">
693693 <a name="gvir-domain-resume-async.parameters"></a><h4>Parameters</h4>
725725 <hr>
726726 <div class="refsect2">
727727 <a name="gvir-domain-resume-finish"></a><h3>gvir_domain_resume_finish ()</h3>
728 <pre class="programlisting"><span class="returnvalue">gboolean</span>
728 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
729729 gvir_domain_resume_finish (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
730 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
731 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
730 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncResult-struct"><span class="type">GAsyncResult</span></a> *result</code></em>,
731 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
732732 </div>
733733 <hr>
734734 <div class="refsect2">
735735 <a name="gvir-domain-wakeup"></a><h3>gvir_domain_wakeup ()</h3>
736 <pre class="programlisting"><span class="returnvalue">gboolean</span>
736 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
737737 gvir_domain_wakeup (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
738 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
739 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
738 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
739 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
740740 <div class="refsect3">
741741 <a name="gvir-domain-wakeup.parameters"></a><h4>Parameters</h4>
742742 <div class="informaltable"><table class="informaltable" width="100%" border="0">
774774 <a name="gvir-domain-wakeup-async"></a><h3>gvir_domain_wakeup_async ()</h3>
775775 <pre class="programlisting"><span class="returnvalue">void</span>
776776 gvir_domain_wakeup_async (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
777 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
778 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
779 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
780 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
777 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
778 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GCancellable.html#GCancellable-struct"><span class="type">GCancellable</span></a> *cancellable</code></em>,
779 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
780 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
781781 <p>Asynchronous variant of <a class="link" href="GVirDomain.html#gvir-domain-wakeup" title="gvir_domain_wakeup ()"><span class="type">gvir_domain_wakeup</span></a>.</p>
782782 <div class="refsect3">
783783 <a name="gvir-domain-wakeup-async.parameters"></a><h4>Parameters</h4>
820820 <hr>
821821 <div class="refsect2">
822822 <a name="gvir-domain-wakeup-finish"></a><h3>gvir_domain_wakeup_finish ()</h3>
823 <pre class="programlisting"><span class="returnvalue">gboolean</span>
823 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
824824 gvir_domain_wakeup_finish (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
825 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
826 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
825 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncResult-struct"><span class="type">GAsyncResult</span></a> *result</code></em>,
826 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
827827 </div>
828828 <hr>
829829 <div class="refsect2">
830830 <a name="gvir-domain-stop"></a><h3>gvir_domain_stop ()</h3>
831 <pre class="programlisting"><span class="returnvalue">gboolean</span>
831 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
832832 gvir_domain_stop (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
833 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
834 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
833 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
834 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
835835 <div class="refsect3">
836836 <a name="gvir-domain-stop.parameters"></a><h4>Parameters</h4>
837837 <div class="informaltable"><table class="informaltable" width="100%" border="0">
858858 <hr>
859859 <div class="refsect2">
860860 <a name="gvir-domain-delete"></a><h3>gvir_domain_delete ()</h3>
861 <pre class="programlisting"><span class="returnvalue">gboolean</span>
861 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
862862 gvir_domain_delete (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
863 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
864 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
863 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
864 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
865865 <div class="refsect3">
866866 <a name="gvir-domain-delete.parameters"></a><h4>Parameters</h4>
867867 <div class="informaltable"><table class="informaltable" width="100%" border="0">
888888 <hr>
889889 <div class="refsect2">
890890 <a name="gvir-domain-shutdown"></a><h3>gvir_domain_shutdown ()</h3>
891 <pre class="programlisting"><span class="returnvalue">gboolean</span>
891 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
892892 gvir_domain_shutdown (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
893 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
894 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
893 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
894 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
895895 <div class="refsect3">
896896 <a name="gvir-domain-shutdown.parameters"></a><h4>Parameters</h4>
897897 <div class="informaltable"><table class="informaltable" width="100%" border="0">
918918 <hr>
919919 <div class="refsect2">
920920 <a name="gvir-domain-reboot"></a><h3>gvir_domain_reboot ()</h3>
921 <pre class="programlisting"><span class="returnvalue">gboolean</span>
921 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
922922 gvir_domain_reboot (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
923 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
924 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
923 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
924 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
925925 <div class="refsect3">
926926 <a name="gvir-domain-reboot.parameters"></a><h4>Parameters</h4>
927927 <div class="informaltable"><table class="informaltable" width="100%" border="0">
948948 <hr>
949949 <div class="refsect2">
950950 <a name="gvir-domain-save-to-file"></a><h3>gvir_domain_save_to_file ()</h3>
951 <pre class="programlisting"><span class="returnvalue">gboolean</span>
951 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
952952 gvir_domain_save_to_file (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
953 <em class="parameter"><code><span class="type">gchar</span> *filename</code></em>,
953 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *filename</code></em>,
954954 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigDomain.html#GVirConfigDomain-struct"><span class="type">GVirConfigDomain</span></a> *custom_conf</code></em>,
955 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
956 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
955 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
956 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
957957 <div class="refsect3">
958958 <a name="gvir-domain-save-to-file.parameters"></a><h4>Parameters</h4>
959959 <div class="informaltable"><table class="informaltable" width="100%" border="0">
996996 <a name="gvir-domain-save-to-file-async"></a><h3>gvir_domain_save_to_file_async ()</h3>
997997 <pre class="programlisting"><span class="returnvalue">void</span>
998998 gvir_domain_save_to_file_async (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
999 <em class="parameter"><code><span class="type">gchar</span> *filename</code></em>,
999 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *filename</code></em>,
10001000 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigDomain.html#GVirConfigDomain-struct"><span class="type">GVirConfigDomain</span></a> *custom_conf</code></em>,
1001 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
1002 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
1003 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
1004 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
1001 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
1002 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GCancellable.html#GCancellable-struct"><span class="type">GCancellable</span></a> *cancellable</code></em>,
1003 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
1004 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
10051005 <p>Asynchronous variant of <a class="link" href="GVirDomain.html#gvir-domain-save-to-file" title="gvir_domain_save_to_file ()"><span class="type">gvir_domain_save_to_file</span></a></p>
10061006 <div class="refsect3">
10071007 <a name="gvir-domain-save-to-file-async.parameters"></a><h4>Parameters</h4>
10541054 <hr>
10551055 <div class="refsect2">
10561056 <a name="gvir-domain-save-to-file-finish"></a><h3>gvir_domain_save_to_file_finish ()</h3>
1057 <pre class="programlisting"><span class="returnvalue">gboolean</span>
1057 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
10581058 gvir_domain_save_to_file_finish (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
1059 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
1060 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1059 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncResult-struct"><span class="type">GAsyncResult</span></a> *result</code></em>,
1060 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
10611061 <p>Finishes the operation started by <a class="link" href="GVirDomain.html#gvir-domain-save-to-file-async" title="gvir_domain_save_to_file_async ()"><span class="type">gvir_domain_save_to_file_async</span></a>.</p>
10621062 <div class="refsect3">
10631063 <a name="gvir-domain-save-to-file-finish.parameters"></a><h4>Parameters</h4>
10961096 <a name="gvir-domain-get-info"></a><h3>gvir_domain_get_info ()</h3>
10971097 <pre class="programlisting"><a class="link" href="GVirDomain.html#GVirDomainInfo"><span class="returnvalue">GVirDomainInfo</span></a> *
10981098 gvir_domain_get_info (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
1099 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1099 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
11001100 <div class="refsect3">
11011101 <a name="gvir-domain-get-info.parameters"></a><h4>Parameters</h4>
11021102 <div class="informaltable"><table class="informaltable" width="100%" border="0">
11151115 <div class="refsect3">
11161116 <a name="gvir-domain-get-info.returns"></a><h4>Returns</h4>
11171117 <p>the info. The returned structure should be
1118 freed using <code class="function"><GTKDOCLINK HREF="g-boxed-free"><code class="function">g_boxed_free()</code></code></GTKDOCLINK> with GVIR_TYPE_DOMAIN_INFO as the first argument
1118 freed using <a href="/usr/share/gtk-doc/html/gobject/gobject-Boxed-Types.html#g-boxed-free"><code class="function"><GTKDOCLINK HREF="g-boxed-free"><code class="function">g_boxed_free()</code></a></code></GTKDOCLINK> with GVIR_TYPE_DOMAIN_INFO as the first argument
11191119 when no longer needed. </p>
11201120 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
11211121 </div>
11251125 <a name="gvir-domain-get-info-async"></a><h3>gvir_domain_get_info_async ()</h3>
11261126 <pre class="programlisting"><span class="returnvalue">void</span>
11271127 gvir_domain_get_info_async (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
1128 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
1129 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
1130 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
1128 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GCancellable.html#GCancellable-struct"><span class="type">GCancellable</span></a> *cancellable</code></em>,
1129 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
1130 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
11311131 <p>Asynchronous variant of <a class="link" href="GVirDomain.html#gvir-domain-get-info" title="gvir_domain_get_info ()"><span class="type">gvir_domain_get_info</span></a>.</p>
11321132 <div class="refsect3">
11331133 <a name="gvir-domain-get-info-async.parameters"></a><h4>Parameters</h4>
11671167 <a name="gvir-domain-get-info-finish"></a><h3>gvir_domain_get_info_finish ()</h3>
11681168 <pre class="programlisting"><a class="link" href="GVirDomain.html#GVirDomainInfo"><span class="returnvalue">GVirDomainInfo</span></a> *
11691169 gvir_domain_get_info_finish (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
1170 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
1171 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1170 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncResult-struct"><span class="type">GAsyncResult</span></a> *result</code></em>,
1171 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
11721172 <p>Finishes the operation started by <a class="link" href="GVirDomain.html#gvir-domain-get-info-async" title="gvir_domain_get_info_async ()"><span class="type">gvir_domain_get_info_async</span></a>.</p>
11731173 <div class="refsect3">
11741174 <a name="gvir-domain-get-info-finish.parameters"></a><h4>Parameters</h4>
12001200 <div class="refsect3">
12011201 <a name="gvir-domain-get-info-finish.returns"></a><h4>Returns</h4>
12021202 <p>the info. The returned object should be
1203 unreffed with <code class="function">g_object_unref()</code> when no longer needed. </p>
1203 unreffed with <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer needed. </p>
12041204 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
12051205 </div>
12061206 </div>
12091209 <a name="gvir-domain-get-config"></a><h3>gvir_domain_get_config ()</h3>
12101210 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigDomain.html#GVirConfigDomain-struct"><span class="returnvalue">GVirConfigDomain</span></a> *
12111211 gvir_domain_get_config (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
1212 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
1213 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1212 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
1213 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
12141214 <div class="refsect3">
12151215 <a name="gvir-domain-get-config.parameters"></a><h4>Parameters</h4>
12161216 <div class="informaltable"><table class="informaltable" width="100%" border="0">
12361236 <div class="refsect3">
12371237 <a name="gvir-domain-get-config.returns"></a><h4>Returns</h4>
12381238 <p>the config. The returned object should be
1239 unreffed with <code class="function">g_object_unref()</code> when no longer needed. </p>
1239 unreffed with <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer needed. </p>
12401240 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
12411241 </div>
12421242 </div>
12431243 <hr>
12441244 <div class="refsect2">
12451245 <a name="gvir-domain-set-config"></a><h3>gvir_domain_set_config ()</h3>
1246 <pre class="programlisting"><span class="returnvalue">gboolean</span>
1246 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
12471247 gvir_domain_set_config (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *domain</code></em>,
12481248 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigDomain.html#GVirConfigDomain-struct"><span class="type">GVirConfigDomain</span></a> *conf</code></em>,
1249 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1249 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
12501250 <p>Resets configuration of an existing domain.</p>
12511251 <p>Note: If domain is already running, the new configuration will not take
12521252 affect until domain reboots.</p>
12851285 <hr>
12861286 <div class="refsect2">
12871287 <a name="gvir-domain-screenshot"></a><h3>gvir_domain_screenshot ()</h3>
1288 <pre class="programlisting"><span class="returnvalue">gchar</span> *
1288 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
12891289 gvir_domain_screenshot (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
12901290 <em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
1291 <em class="parameter"><code><span class="type">guint</span> monitor_id</code></em>,
1292 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
1293 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1291 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> monitor_id</code></em>,
1292 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
1293 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
12941294 <div class="refsect3">
12951295 <a name="gvir-domain-screenshot.parameters"></a><h4>Parameters</h4>
12961296 <div class="informaltable"><table class="informaltable" width="100%" border="0">
13281328 <hr>
13291329 <div class="refsect2">
13301330 <a name="gvir-domain-open-console"></a><h3>gvir_domain_open_console ()</h3>
1331 <pre class="programlisting"><span class="returnvalue">gboolean</span>
1331 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
13321332 gvir_domain_open_console (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
13331333 <em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
1334 <em class="parameter"><code>const <span class="type">gchar</span> *devname</code></em>,
1335 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
1336 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1334 <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *devname</code></em>,
1335 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
1336 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
13371337 <p>Open a text console for the domain <em class="parameter"><code>dom</code></em>
13381338 , connecting it to the
13391339 stream <em class="parameter"><code>stream</code></em>
13821382 <hr>
13831383 <div class="refsect2">
13841384 <a name="gvir-domain-open-graphics"></a><h3>gvir_domain_open_graphics ()</h3>
1385 <pre class="programlisting"><span class="returnvalue">gboolean</span>
1385 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
13861386 gvir_domain_open_graphics (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
1387 <em class="parameter"><code><span class="type">guint</span> idx</code></em>,
1387 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> idx</code></em>,
13881388 <em class="parameter"><code><span class="type">int</span> fd</code></em>,
13891389 <em class="parameter"><code>unsigned <span class="type">int</span> flags</code></em>,
1390 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1390 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
13911391 <p>Open a connection to the local graphics display, connecting it to the
13921392 socket pair file descriptor passed in as <em class="parameter"><code>fd</code></em>
13931393 .</p>
14331433 <a name="gvir-domain-open-graphics-fd"></a><h3>gvir_domain_open_graphics_fd ()</h3>
14341434 <pre class="programlisting"><span class="returnvalue">int</span>
14351435 gvir_domain_open_graphics_fd (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
1436 <em class="parameter"><code><span class="type">guint</span> idx</code></em>,
1436 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> idx</code></em>,
14371437 <em class="parameter"><code>unsigned <span class="type">int</span> flags</code></em>,
1438 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1438 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
14391439 <p>This will create a socket pair connected to the graphics backend of <em class="parameter"><code>dom</code></em>
14401440 . One
14411441 end of the socket will be returned on success, and the other end is handed to
14801480 <hr>
14811481 <div class="refsect2">
14821482 <a name="gvir-domain-suspend"></a><h3>gvir_domain_suspend ()</h3>
1483 <pre class="programlisting"><span class="returnvalue">gboolean</span>
1483 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
14841484 gvir_domain_suspend (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
1485 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1485 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
14861486 <p>Suspends an active domain, the process is frozen without further access to
14871487 CPU resources and I/O but the memory used by the domain at the hypervisor
14881488 level will stay allocated. Use <a class="link" href="GVirDomain.html#gvir-domain-resume" title="gvir_domain_resume ()"><code class="function">gvir_domain_resume()</code></a> to reactivate the domain.</p>
15161516 <hr>
15171517 <div class="refsect2">
15181518 <a name="gvir-domain-save"></a><h3>gvir_domain_save ()</h3>
1519 <pre class="programlisting"><span class="returnvalue">gboolean</span>
1519 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
15201520 gvir_domain_save (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
15211521 <em class="parameter"><code>unsigned <span class="type">int</span> flags</code></em>,
1522 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1522 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
15231523 <p>Saves the state of the domain on disk and stops it. Use <a class="link" href="GVirDomain.html#gvir-domain-start" title="gvir_domain_start ()"><span class="type">gvir_domain_start</span></a>
15241524 to restore the saved state of the domain. A saved domain can be restored
15251525 even after shutdown/reboot of host machine.</p>
15611561 <pre class="programlisting"><span class="returnvalue">void</span>
15621562 gvir_domain_save_async (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
15631563 <em class="parameter"><code>unsigned <span class="type">int</span> flags</code></em>,
1564 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
1565 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
1566 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
1564 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GCancellable.html#GCancellable-struct"><span class="type">GCancellable</span></a> *cancellable</code></em>,
1565 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
1566 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
15671567 <p>Asynchronous variant of <a class="link" href="GVirDomain.html#gvir-domain-save" title="gvir_domain_save ()"><span class="type">gvir_domain_save</span></a>.</p>
15681568 <div class="refsect3">
15691569 <a name="gvir-domain-save-async.parameters"></a><h4>Parameters</h4>
16061606 <hr>
16071607 <div class="refsect2">
16081608 <a name="gvir-domain-save-finish"></a><h3>gvir_domain_save_finish ()</h3>
1609 <pre class="programlisting"><span class="returnvalue">gboolean</span>
1609 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
16101610 gvir_domain_save_finish (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
1611 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
1612 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1611 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncResult-struct"><span class="type">GAsyncResult</span></a> *result</code></em>,
1612 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
16131613 <p>Finishes the operation started by <a class="link" href="GVirDomain.html#gvir-domain-save-async" title="gvir_domain_save_async ()"><span class="type">gvir_domain_save_async</span></a>.</p>
16141614 <div class="refsect3">
16151615 <a name="gvir-domain-save-finish.parameters"></a><h4>Parameters</h4>
16461646 <hr>
16471647 <div class="refsect2">
16481648 <a name="gvir-domain-get-persistent"></a><h3>gvir_domain_get_persistent ()</h3>
1649 <pre class="programlisting"><span class="returnvalue">gboolean</span>
1649 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
16501650 gvir_domain_get_persistent (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>);</pre>
16511651 <div class="refsect3">
16521652 <a name="gvir-domain-get-persistent.parameters"></a><h4>Parameters</h4>
16711671 <hr>
16721672 <div class="refsect2">
16731673 <a name="gvir-domain-get-saved"></a><h3>gvir_domain_get_saved ()</h3>
1674 <pre class="programlisting"><span class="returnvalue">gboolean</span>
1674 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
16751675 gvir_domain_get_saved (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>);</pre>
16761676 <div class="refsect3">
16771677 <a name="gvir-domain-get-saved.parameters"></a><h4>Parameters</h4>
16971697 <hr>
16981698 <div class="refsect2">
16991699 <a name="gvir-domain-get-devices"></a><h3>gvir_domain_get_devices ()</h3>
1700 <pre class="programlisting"><span class="returnvalue">GList</span> *
1700 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
17011701 gvir_domain_get_devices (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *domain</code></em>,
1702 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1702 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
17031703 <p>Gets the list of devices attached to <em class="parameter"><code>domain</code></em>
17041704 . The returned list should
1705 be freed with <code class="function">g_list_free()</code>, after its elements have been unreffed with
1706 <code class="function">g_object_unref()</code>.</p>
1705 be freed with <a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#g-list-free"><code class="function">g_list_free()</code></a>, after its elements have been unreffed with
1706 <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a>.</p>
17071707 <div class="refsect3">
17081708 <a name="gvir-domain-get-devices.parameters"></a><h4>Parameters</h4>
17091709 <div class="informaltable"><table class="informaltable" width="100%" border="0">
17291729 <div class="refsect3">
17301730 <a name="gvir-domain-get-devices.returns"></a><h4>Returns</h4>
17311731 <p>a newly
1732 allocated <span class="type">GList</span> of <span class="type">GVirDomainDevice</span>. </p>
1732 allocated <a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="type">GList</span></a> of <span class="type">GVirDomainDevice</span>. </p>
17331733 <p><span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> LibvirtGObject.DomainDevice][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
17341734 </div>
17351735 </div>
17361736 <hr>
17371737 <div class="refsect2">
17381738 <a name="gvir-domain-update-device"></a><h3>gvir_domain_update_device ()</h3>
1739 <pre class="programlisting"><span class="returnvalue">gboolean</span>
1739 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
17401740 gvir_domain_update_device (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
17411741 <em class="parameter"><code><span class="type">GVirConfigDomainDevice</span> *device</code></em>,
1742 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
1743 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1742 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
1743 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
17441744 <p>Update the configuration of a device.</p>
17451745 <div class="refsect3">
17461746 <a name="gvir-domain-update-device.parameters"></a><h4>Parameters</h4>
17851785 <pre class="programlisting"><a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot"><span class="returnvalue">GVirDomainSnapshot</span></a> *
17861786 gvir_domain_create_snapshot (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
17871787 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigDomainSnapshot.html#GVirConfigDomainSnapshot-struct"><span class="type">GVirConfigDomainSnapshot</span></a> *custom_conf</code></em>,
1788 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
1789 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1788 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
1789 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
17901790 <div class="refsect3">
17911791 <a name="gvir-domain-create-snapshot.parameters"></a><h4>Parameters</h4>
17921792 <div class="informaltable"><table class="informaltable" width="100%" border="0">
18321832 <pre class="programlisting"><span class="returnvalue">void</span>
18331833 gvir_domain_create_snapshot_async (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
18341834 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigDomainSnapshot.html#GVirConfigDomainSnapshot-struct"><span class="type">GVirConfigDomainSnapshot</span></a> *custom_conf</code></em>,
1835 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
1836 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
1837 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
1838 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
1835 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
1836 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GCancellable.html#GCancellable-struct"><span class="type">GCancellable</span></a> *cancellable</code></em>,
1837 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
1838 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
18391839 <div class="refsect3">
18401840 <a name="gvir-domain-create-snapshot-async.parameters"></a><h4>Parameters</h4>
18411841 <div class="informaltable"><table class="informaltable" width="100%" border="0">
18521852 </tr>
18531853 <tr>
18541854 <td class="parameter_name"><p>custom_conf</p></td>
1855 <td class="parameter_description"><p>Configuration of snapshot or <code class="literal">NULL</code>. </p></td>
1855 <td class="parameter_description"><p>Configuration of snapshot or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
18561856 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
18571857 </tr>
18581858 <tr>
18841884 <a name="gvir-domain-create-snapshot-finish"></a><h3>gvir_domain_create_snapshot_finish ()</h3>
18851885 <pre class="programlisting"><a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot"><span class="returnvalue">GVirDomainSnapshot</span></a> *
18861886 gvir_domain_create_snapshot_finish (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *domain</code></em>,
1887 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
1888 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
1887 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncResult-struct"><span class="type">GAsyncResult</span></a> *result</code></em>,
1888 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
18891889 <div class="refsect3">
18901890 <a name="gvir-domain-create-snapshot-finish.parameters"></a><h4>Parameters</h4>
18911891 <div class="informaltable"><table class="informaltable" width="100%" border="0">
19221922 <hr>
19231923 <div class="refsect2">
19241924 <a name="gvir-domain-fetch-snapshots"></a><h3>gvir_domain_fetch_snapshots ()</h3>
1925 <pre class="programlisting"><span class="returnvalue">gboolean</span>
1925 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
19261926 gvir_domain_fetch_snapshots (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
1927 <em class="parameter"><code><span class="type">guint</span> list_flags</code></em>,
1928 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
1929 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
1927 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> list_flags</code></em>,
1928 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GCancellable.html#GCancellable-struct"><span class="type">GCancellable</span></a> *cancellable</code></em>,
1929 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
19301930 <div class="refsect3">
19311931 <a name="gvir-domain-fetch-snapshots.parameters"></a><h4>Parameters</h4>
19321932 <div class="informaltable"><table class="informaltable" width="100%" border="0">
19531953 </tr>
19541954 <tr>
19551955 <td class="parameter_name"><p>error</p></td>
1956 <td class="parameter_description"><p>Place-holder for error or <code class="literal">NULL</code>. </p></td>
1956 <td class="parameter_description"><p>Place-holder for error or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
19571957 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
19581958 </tr>
19591959 </tbody>
19611961 </div>
19621962 <div class="refsect3">
19631963 <a name="gvir-domain-fetch-snapshots.returns"></a><h4>Returns</h4>
1964 <p> <code class="literal">TRUE</code> on success, <code class="literal">FALSE</code> otherwise.</p>
1964 <p> <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> on success, <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
19651965 </div>
19661966 </div>
19671967 <hr>
19681968 <div class="refsect2">
19691969 <a name="gvir-domain-get-snapshots"></a><h3>gvir_domain_get_snapshots ()</h3>
1970 <pre class="programlisting"><span class="returnvalue">GList</span> *
1970 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
19711971 gvir_domain_get_snapshots (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>);</pre>
19721972 <div class="refsect3">
19731973 <a name="gvir-domain-get-snapshots.parameters"></a><h4>Parameters</h4>
19881988 <a name="gvir-domain-get-snapshots.returns"></a><h4>Returns</h4>
19891989 <p>A
19901990 list of all the snapshots available for the given domain. The returned
1991 list should be freed with <code class="function">g_list_free()</code>, after its elements have been
1992 unreffed with <code class="function">g_object_unref()</code>. </p>
1991 list should be freed with <a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#g-list-free"><code class="function">g_list_free()</code></a>, after its elements have been
1992 unreffed with <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a>. </p>
19931993 <p><span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> LibvirtGObject.DomainSnapshot][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
19941994 </div>
19951995 </div>
19981998 <a name="gvir-domain-fetch-snapshots-async"></a><h3>gvir_domain_fetch_snapshots_async ()</h3>
19991999 <pre class="programlisting"><span class="returnvalue">void</span>
20002000 gvir_domain_fetch_snapshots_async (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
2001 <em class="parameter"><code><span class="type">guint</span> list_flags</code></em>,
2002 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
2003 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
2004 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
2001 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> list_flags</code></em>,
2002 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GCancellable.html#GCancellable-struct"><span class="type">GCancellable</span></a> *cancellable</code></em>,
2003 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
2004 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
20052005 <div class="refsect3">
20062006 <a name="gvir-domain-fetch-snapshots-async.parameters"></a><h4>Parameters</h4>
20072007 <div class="informaltable"><table class="informaltable" width="100%" border="0">
20432043 <hr>
20442044 <div class="refsect2">
20452045 <a name="gvir-domain-fetch-snapshots-finish"></a><h3>gvir_domain_fetch_snapshots_finish ()</h3>
2046 <pre class="programlisting"><span class="returnvalue">gboolean</span>
2046 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
20472047 gvir_domain_fetch_snapshots_finish (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
2048 <em class="parameter"><code><span class="type">GAsyncResult</span> *res</code></em>,
2049 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
2048 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncResult-struct"><span class="type">GAsyncResult</span></a> *res</code></em>,
2049 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
20502050 <div class="refsect3">
20512051 <a name="gvir-domain-fetch-snapshots-finish.parameters"></a><h4>Parameters</h4>
20522052 <div class="informaltable"><table class="informaltable" width="100%" border="0">
20772077 <hr>
20782078 <div class="refsect2">
20792079 <a name="gvir-domain-get-has-current-snapshot"></a><h3>gvir_domain_get_has_current_snapshot ()</h3>
2080 <pre class="programlisting"><span class="returnvalue">gboolean</span>
2080 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
20812081 gvir_domain_get_has_current_snapshot (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
2082 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
2083 <em class="parameter"><code><span class="type">gboolean</span> *has_current_snapshot</code></em>,
2084 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
2082 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
2083 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> *has_current_snapshot</code></em>,
2084 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
20852085 <div class="refsect3">
20862086 <a name="gvir-domain-get-has-current-snapshot.parameters"></a><h4>Parameters</h4>
20872087 <div class="informaltable"><table class="informaltable" width="100%" border="0">
21032103 </tr>
21042104 <tr>
21052105 <td class="parameter_name"><p>has_current_snapshot</p></td>
2106 <td class="parameter_description"><p>Will be set to <code class="literal">TRUE</code> if the given domain
2107 has a current snapshot and to <code class="literal">FALSE</code> otherwise. </p></td>
2106 <td class="parameter_description"><p>Will be set to <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the given domain
2107 has a current snapshot and to <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise. </p></td>
21082108 <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span></td>
21092109 </tr>
21102110 <tr>
21112111 <td class="parameter_name"><p>error</p></td>
2112 <td class="parameter_description"><p>Place-holder for error or <code class="literal">NULL</code>. </p></td>
2112 <td class="parameter_description"><p>Place-holder for error or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
21132113 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
21142114 </tr>
21152115 </tbody>
21172117 </div>
21182118 <div class="refsect3">
21192119 <a name="gvir-domain-get-has-current-snapshot.returns"></a><h4>Returns</h4>
2120 <p> <code class="literal">TRUE</code> on success, <code class="literal">FALSE</code> otherwise.</p>
2120 <p> <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> on success, <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
21212121 </div>
21222122 </div>
21232123 <hr>
21242124 <div class="refsect2">
21252125 <a name="gvir-domain-set-time"></a><h3>gvir_domain_set_time ()</h3>
2126 <pre class="programlisting"><span class="returnvalue">gboolean</span>
2126 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
21272127 gvir_domain_set_time (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
2128 <em class="parameter"><code><span class="type">GDateTime</span> *date_time</code></em>,
2129 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
2130 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
2128 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-GDateTime.html#GDateTime"><span class="type">GDateTime</span></a> *date_time</code></em>,
2129 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
2130 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
21312131 <p>This function tries to set guest time to the given value. The passed
21322132 time must in UTC.</p>
21332133 <p>If <em class="parameter"><code>date_time</code></em>
2134 is <code class="literal">NULL</code>, the time is reset using the domain's RTC.</p>
2134 is <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, the time is reset using the domain's RTC.</p>
21352135 <p>Please note that some hypervisors may require guest agent to be configured
21362136 and running in order for this function to work.</p>
21372137 <div class="refsect3">
21502150 </tr>
21512151 <tr>
21522152 <td class="parameter_name"><p>date_time</p></td>
2153 <td class="parameter_description"><p>the time to set as <span class="type">GDateTime</span>. </p></td>
2153 <td class="parameter_description"><p>the time to set as <a href="/usr/share/gtk-doc/html/glib/glib-GDateTime.html#GDateTime"><span class="type">GDateTime</span></a>. </p></td>
21542154 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
21552155 </tr>
21562156 <tr>
21602160 </tr>
21612161 <tr>
21622162 <td class="parameter_name"><p>err</p></td>
2163 <td class="parameter_description"><p>Place-holder for error or <code class="literal">NULL</code>. </p></td>
2163 <td class="parameter_description"><p>Place-holder for error or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
21642164 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
21652165 </tr>
21662166 </tbody>
21682168 </div>
21692169 <div class="refsect3">
21702170 <a name="gvir-domain-set-time.returns"></a><h4>Returns</h4>
2171 <p> <code class="literal">TRUE</code> on success, <code class="literal">FALSE</code> otherwise.</p>
2171 <p> <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> on success, <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
21722172 </div>
21732173 </div>
21742174 <hr>
21762176 <a name="gvir-domain-set-time-async"></a><h3>gvir_domain_set_time_async ()</h3>
21772177 <pre class="programlisting"><span class="returnvalue">void</span>
21782178 gvir_domain_set_time_async (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
2179 <em class="parameter"><code><span class="type">GDateTime</span> *date_time</code></em>,
2180 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
2181 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
2182 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
2183 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
2179 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-GDateTime.html#GDateTime"><span class="type">GDateTime</span></a> *date_time</code></em>,
2180 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
2181 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GCancellable.html#GCancellable-struct"><span class="type">GCancellable</span></a> *cancellable</code></em>,
2182 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
2183 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
21842184 <p>Asynchronous variant of <a class="link" href="GVirDomain.html#gvir-domain-set-time" title="gvir_domain_set_time ()"><span class="type">gvir_domain_set_time</span></a>.</p>
21852185 <div class="refsect3">
21862186 <a name="gvir-domain-set-time-async.parameters"></a><h4>Parameters</h4>
21982198 </tr>
21992199 <tr>
22002200 <td class="parameter_name"><p>date_time</p></td>
2201 <td class="parameter_description"><p>the time to set as <span class="type">GDateTime</span>. </p></td>
2201 <td class="parameter_description"><p>the time to set as <a href="/usr/share/gtk-doc/html/glib/glib-GDateTime.html#GDateTime"><span class="type">GDateTime</span></a>. </p></td>
22022202 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
22032203 </tr>
22042204 <tr>
22282228 <hr>
22292229 <div class="refsect2">
22302230 <a name="gvir-domain-set-time-finish"></a><h3>gvir_domain_set_time_finish ()</h3>
2231 <pre class="programlisting"><span class="returnvalue">gboolean</span>
2231 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
22322232 gvir_domain_set_time_finish (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
2233 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
2234 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
2233 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncResult-struct"><span class="type">GAsyncResult</span></a> *result</code></em>,
2234 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
22352235 <p>Finishes the operation started by <a class="link" href="GVirDomain.html#gvir-domain-set-time-async" title="gvir_domain_set_time_async ()"><span class="type">gvir_domain_set_time_async</span></a>.</p>
22362236 <div class="refsect3">
22372237 <a name="gvir-domain-set-time-finish.parameters"></a><h4>Parameters</h4>
22622262 </div>
22632263 <div class="refsect3">
22642264 <a name="gvir-domain-set-time-finish.returns"></a><h4>Returns</h4>
2265 <p> <code class="literal">TRUE</code> on success, <code class="literal">FALSE</code> otherwise.</p>
2265 <p> <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> on success, <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
22662266 </div>
22672267 </div>
22682268 </div>
27512751 <hr>
27522752 <div class="refsect2">
27532753 <a name="GVirDomain--persistent"></a><h3>The <code class="literal">“persistent”</code> property</h3>
2754 <pre class="programlisting"> “persistent” <span class="type">gboolean</span></pre>
2754 <pre class="programlisting"> “persistent” <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
27552755 <p>If domain is persistent.</p>
27562756 <p>Flags: Read</p>
27572757 <p>Default value: TRUE</p>
27632763 <a name="GVirDomain-pmsuspended"></a><h3>The <code class="literal">“pmsuspended”</code> signal</h3>
27642764 <pre class="programlisting"><span class="returnvalue">void</span>
27652765 user_function (<a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *gvirdomain,
2766 <span class="type">gpointer</span> user_data)</pre>
2767 <p>Flags: No Hooks</p>
2766 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2767 <p>Flags: <a href="/usr/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-NO-HOOKS:CAPS">No Hooks</a></p>
27682768 </div>
27692769 <hr>
27702770 <div class="refsect2">
27712771 <a name="GVirDomain-resumed"></a><h3>The <code class="literal">“resumed”</code> signal</h3>
27722772 <pre class="programlisting"><span class="returnvalue">void</span>
27732773 user_function (<a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *gvirdomain,
2774 <span class="type">gpointer</span> user_data)</pre>
2775 <p>Flags: No Hooks</p>
2774 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2775 <p>Flags: <a href="/usr/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-NO-HOOKS:CAPS">No Hooks</a></p>
27762776 </div>
27772777 <hr>
27782778 <div class="refsect2">
27792779 <a name="GVirDomain-started"></a><h3>The <code class="literal">“started”</code> signal</h3>
27802780 <pre class="programlisting"><span class="returnvalue">void</span>
27812781 user_function (<a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *gvirdomain,
2782 <span class="type">gpointer</span> user_data)</pre>
2783 <p>Flags: No Hooks</p>
2782 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2783 <p>Flags: <a href="/usr/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-NO-HOOKS:CAPS">No Hooks</a></p>
27842784 </div>
27852785 <hr>
27862786 <div class="refsect2">
27872787 <a name="GVirDomain-stopped"></a><h3>The <code class="literal">“stopped”</code> signal</h3>
27882788 <pre class="programlisting"><span class="returnvalue">void</span>
27892789 user_function (<a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *gvirdomain,
2790 <span class="type">gpointer</span> user_data)</pre>
2791 <p>Flags: No Hooks</p>
2790 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2791 <p>Flags: <a href="/usr/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-NO-HOOKS:CAPS">No Hooks</a></p>
27922792 </div>
27932793 <hr>
27942794 <div class="refsect2">
27952795 <a name="GVirDomain-suspended"></a><h3>The <code class="literal">“suspended”</code> signal</h3>
27962796 <pre class="programlisting"><span class="returnvalue">void</span>
27972797 user_function (<a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *gvirdomain,
2798 <span class="type">gpointer</span> user_data)</pre>
2799 <p>Flags: No Hooks</p>
2798 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2799 <p>Flags: <a href="/usr/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-NO-HOOKS:CAPS">No Hooks</a></p>
28002800 </div>
28012801 <hr>
28022802 <div class="refsect2">
28032803 <a name="GVirDomain-updated"></a><h3>The <code class="literal">“updated”</code> signal</h3>
28042804 <pre class="programlisting"><span class="returnvalue">void</span>
28052805 user_function (<a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *gvirdomain,
2806 <span class="type">gpointer</span> user_data)</pre>
2807 <p>Flags: No Hooks</p>
2806 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2807 <p>Flags: <a href="/usr/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-NO-HOOKS:CAPS">No Hooks</a></p>
28082808 </div>
28092809 </div>
28102810 </div>
28112811 <div class="footer">
2812 <hr>Generated by GTK-Doc V1.28</div>
2812 <hr>Generated by GTK-Doc V1.29</div>
28132813 </body>
28142814 </html>
77 <link rel="up" href="ch01.html" title="Libvirt-gobject">
88 <link rel="prev" href="GVirDomain.html" title="GVirDomain">
99 <link rel="next" href="GVirInterface.html" title="GVirInterface">
10 <meta name="generator" content="GTK-Doc V1.28 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.29 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
4141 </colgroup>
4242 <tbody>
4343 <tr>
44 <td class="function_type">const <span class="returnvalue">gchar</span> *
44 <td class="function_type">const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
4545 </td>
4646 <td class="function_name">
4747 <a class="link" href="GVirDomainSnapshot.html#gvir-domain-snapshot-get-name" title="gvir_domain_snapshot_get_name ()">gvir_domain_snapshot_get_name</a> <span class="c_punctuation">()</span>
5757 </tr>
5858 <tr>
5959 <td class="function_type">
60 <span class="returnvalue">gboolean</span>
60 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
6161 </td>
6262 <td class="function_name">
6363 <a class="link" href="GVirDomainSnapshot.html#gvir-domain-snapshot-delete" title="gvir_domain_snapshot_delete ()">gvir_domain_snapshot_delete</a> <span class="c_punctuation">()</span>
7373 </tr>
7474 <tr>
7575 <td class="function_type">
76 <span class="returnvalue">gboolean</span>
76 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
7777 </td>
7878 <td class="function_name">
7979 <a class="link" href="GVirDomainSnapshot.html#gvir-domain-snapshot-delete-finish" title="gvir_domain_snapshot_delete_finish ()">gvir_domain_snapshot_delete_finish</a> <span class="c_punctuation">()</span>
8181 </tr>
8282 <tr>
8383 <td class="function_type">
84 <span class="returnvalue">gboolean</span>
84 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
8585 </td>
8686 <td class="function_name">
8787 <a class="link" href="GVirDomainSnapshot.html#gvir-domain-snapshot-get-is-current" title="gvir_domain_snapshot_get_is_current ()">gvir_domain_snapshot_get_is_current</a> <span class="c_punctuation">()</span>
8989 </tr>
9090 <tr>
9191 <td class="function_type">
92 <span class="returnvalue">gboolean</span>
92 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
9393 </td>
9494 <td class="function_name">
9595 <a class="link" href="GVirDomainSnapshot.html#gvir-domain-snapshot-revert-to" title="gvir_domain_snapshot_revert_to ()">gvir_domain_snapshot_revert_to</a> <span class="c_punctuation">()</span>
105105 </tr>
106106 <tr>
107107 <td class="function_type">
108 <span class="returnvalue">gboolean</span>
108 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
109109 </td>
110110 <td class="function_name">
111111 <a class="link" href="GVirDomainSnapshot.html#gvir-domain-snapshot-revert-to-finish" title="gvir_domain_snapshot_revert_to_finish ()">gvir_domain_snapshot_revert_to_finish</a> <span class="c_punctuation">()</span>
113113 </tr>
114114 <tr>
115115 <td class="function_type">
116 <span class="returnvalue">gboolean</span>
116 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
117117 </td>
118118 <td class="function_name">
119119 <a class="link" href="GVirDomainSnapshot.html#gvir-domain-snapshot-set-config" title="gvir_domain_snapshot_set_config ()">gvir_domain_snapshot_set_config</a> <span class="c_punctuation">()</span>
159159 </div>
160160 <div class="refsect1">
161161 <a name="GVirDomainSnapshot.object-hierarchy"></a><h2>Object Hierarchy</h2>
162 <pre class="screen"> GObject
162 <pre class="screen"> <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a>
163163 <span class="lineart">╰──</span> GVirDomainSnapshot
164164 </pre>
165165 </div>
170170 <a name="GVirDomainSnapshot.functions_details"></a><h2>Functions</h2>
171171 <div class="refsect2">
172172 <a name="gvir-domain-snapshot-get-name"></a><h3>gvir_domain_snapshot_get_name ()</h3>
173 <pre class="programlisting">const <span class="returnvalue">gchar</span> *
173 <pre class="programlisting">const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
174174 gvir_domain_snapshot_get_name (<em class="parameter"><code><a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot"><span class="type">GVirDomainSnapshot</span></a> *snapshot</code></em>);</pre>
175175 </div>
176176 <hr>
178178 <a name="gvir-domain-snapshot-get-config"></a><h3>gvir_domain_snapshot_get_config ()</h3>
179179 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigDomainSnapshot.html#GVirConfigDomainSnapshot-struct"><span class="returnvalue">GVirConfigDomainSnapshot</span></a> *
180180 gvir_domain_snapshot_get_config (<em class="parameter"><code><a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot"><span class="type">GVirDomainSnapshot</span></a> *snapshot</code></em>,
181 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
182 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
181 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
182 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
183183 <div class="refsect3">
184184 <a name="gvir-domain-snapshot-get-config.parameters"></a><h4>Parameters</h4>
185185 <div class="informaltable"><table class="informaltable" width="100%" border="0">
205205 <div class="refsect3">
206206 <a name="gvir-domain-snapshot-get-config.returns"></a><h4>Returns</h4>
207207 <p>the config. The returned object should be
208 unreffed with <code class="function">g_object_unref()</code> when no longer needed. </p>
208 unreffed with <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer needed. </p>
209209 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
210210 </div>
211211 </div>
212212 <hr>
213213 <div class="refsect2">
214214 <a name="gvir-domain-snapshot-delete"></a><h3>gvir_domain_snapshot_delete ()</h3>
215 <pre class="programlisting"><span class="returnvalue">gboolean</span>
215 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
216216 gvir_domain_snapshot_delete (<em class="parameter"><code><a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot"><span class="type">GVirDomainSnapshot</span></a> *snapshot</code></em>,
217 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
218 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
217 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
218 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
219219 <div class="refsect3">
220220 <a name="gvir-domain-snapshot-delete.parameters"></a><h4>Parameters</h4>
221221 <div class="informaltable"><table class="informaltable" width="100%" border="0">
253253 <a name="gvir-domain-snapshot-delete-async"></a><h3>gvir_domain_snapshot_delete_async ()</h3>
254254 <pre class="programlisting"><span class="returnvalue">void</span>
255255 gvir_domain_snapshot_delete_async (<em class="parameter"><code><a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot"><span class="type">GVirDomainSnapshot</span></a> *snapshot</code></em>,
256 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
257 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
258 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
259 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
256 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
257 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GCancellable.html#GCancellable-struct"><span class="type">GCancellable</span></a> *cancellable</code></em>,
258 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
259 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
260260 <div class="refsect3">
261261 <a name="gvir-domain-snapshot-delete-async.parameters"></a><h4>Parameters</h4>
262262 <div class="informaltable"><table class="informaltable" width="100%" border="0">
298298 <hr>
299299 <div class="refsect2">
300300 <a name="gvir-domain-snapshot-delete-finish"></a><h3>gvir_domain_snapshot_delete_finish ()</h3>
301 <pre class="programlisting"><span class="returnvalue">gboolean</span>
301 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
302302 gvir_domain_snapshot_delete_finish (<em class="parameter"><code><a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot"><span class="type">GVirDomainSnapshot</span></a> *snapshot</code></em>,
303 <em class="parameter"><code><span class="type">GAsyncResult</span> *res</code></em>,
304 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
303 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncResult-struct"><span class="type">GAsyncResult</span></a> *res</code></em>,
304 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
305305 <div class="refsect3">
306306 <a name="gvir-domain-snapshot-delete-finish.parameters"></a><h4>Parameters</h4>
307307 <div class="informaltable"><table class="informaltable" width="100%" border="0">
326326 </div>
327327 <div class="refsect3">
328328 <a name="gvir-domain-snapshot-delete-finish.returns"></a><h4>Returns</h4>
329 <p> <code class="literal">TRUE</code> on success, <code class="literal">FALSE</code> otherwise.</p>
329 <p> <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> on success, <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
330330 </div>
331331 </div>
332332 <hr>
333333 <div class="refsect2">
334334 <a name="gvir-domain-snapshot-get-is-current"></a><h3>gvir_domain_snapshot_get_is_current ()</h3>
335 <pre class="programlisting"><span class="returnvalue">gboolean</span>
335 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
336336 gvir_domain_snapshot_get_is_current (<em class="parameter"><code><a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot"><span class="type">GVirDomainSnapshot</span></a> *snapshot</code></em>,
337 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
338 <em class="parameter"><code><span class="type">gboolean</span> *is_current</code></em>,
339 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
337 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
338 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> *is_current</code></em>,
339 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
340340 <div class="refsect3">
341341 <a name="gvir-domain-snapshot-get-is-current.parameters"></a><h4>Parameters</h4>
342342 <div class="informaltable"><table class="informaltable" width="100%" border="0">
358358 </tr>
359359 <tr>
360360 <td class="parameter_name"><p>is_current</p></td>
361 <td class="parameter_description"><p><code class="literal">TRUE</code> if the given snapshot is the current snapshot
362 of its domain, <code class="literal">FALSE</code> otherwise. </p></td>
361 <td class="parameter_description"><p><a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the given snapshot is the current snapshot
362 of its domain, <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise. </p></td>
363363 <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span></td>
364364 </tr>
365365 <tr>
366366 <td class="parameter_name"><p>error</p></td>
367 <td class="parameter_description"><p>Place-holder for error or <code class="literal">NULL</code>. </p></td>
367 <td class="parameter_description"><p>Place-holder for error or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
368368 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
369369 </tr>
370370 </tbody>
372372 </div>
373373 <div class="refsect3">
374374 <a name="gvir-domain-snapshot-get-is-current.returns"></a><h4>Returns</h4>
375 <p> <code class="literal">TRUE</code> on success, <code class="literal">FALSE</code> otherwise.</p>
375 <p> <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> on success, <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
376376 </div>
377377 </div>
378378 <hr>
379379 <div class="refsect2">
380380 <a name="gvir-domain-snapshot-revert-to"></a><h3>gvir_domain_snapshot_revert_to ()</h3>
381 <pre class="programlisting"><span class="returnvalue">gboolean</span>
381 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
382382 gvir_domain_snapshot_revert_to (<em class="parameter"><code><a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot"><span class="type">GVirDomainSnapshot</span></a> *snapshot</code></em>,
383 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
384 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
383 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
384 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
385385 <div class="refsect3">
386386 <a name="gvir-domain-snapshot-revert-to.parameters"></a><h4>Parameters</h4>
387387 <div class="informaltable"><table class="informaltable" width="100%" border="0">
422422 <a name="gvir-domain-snapshot-revert-to-async"></a><h3>gvir_domain_snapshot_revert_to_async ()</h3>
423423 <pre class="programlisting"><span class="returnvalue">void</span>
424424 gvir_domain_snapshot_revert_to_async (<em class="parameter"><code><a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot"><span class="type">GVirDomainSnapshot</span></a> *snapshot</code></em>,
425 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
426 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
427 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
428 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
425 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
426 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GCancellable.html#GCancellable-struct"><span class="type">GCancellable</span></a> *cancellable</code></em>,
427 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
428 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
429429 <div class="refsect3">
430430 <a name="gvir-domain-snapshot-revert-to-async.parameters"></a><h4>Parameters</h4>
431431 <div class="informaltable"><table class="informaltable" width="100%" border="0">
467467 <hr>
468468 <div class="refsect2">
469469 <a name="gvir-domain-snapshot-revert-to-finish"></a><h3>gvir_domain_snapshot_revert_to_finish ()</h3>
470 <pre class="programlisting"><span class="returnvalue">gboolean</span>
470 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
471471 gvir_domain_snapshot_revert_to_finish (<em class="parameter"><code><a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot"><span class="type">GVirDomainSnapshot</span></a> *snapshot</code></em>,
472 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
473 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
472 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncResult-struct"><span class="type">GAsyncResult</span></a> *result</code></em>,
473 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
474474 <div class="refsect3">
475475 <a name="gvir-domain-snapshot-revert-to-finish.parameters"></a><h4>Parameters</h4>
476476 <div class="informaltable"><table class="informaltable" width="100%" border="0">
495495 </div>
496496 <div class="refsect3">
497497 <a name="gvir-domain-snapshot-revert-to-finish.returns"></a><h4>Returns</h4>
498 <p> <code class="literal">TRUE</code> on success, <code class="literal">FALSE</code> otherwise.</p>
498 <p> <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> on success, <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
499499 </div>
500500 </div>
501501 <hr>
502502 <div class="refsect2">
503503 <a name="gvir-domain-snapshot-set-config"></a><h3>gvir_domain_snapshot_set_config ()</h3>
504 <pre class="programlisting"><span class="returnvalue">gboolean</span>
504 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
505505 gvir_domain_snapshot_set_config (<em class="parameter"><code><a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot"><span class="type">GVirDomainSnapshot</span></a> *snapshot</code></em>,
506506 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigDomainSnapshot.html#GVirConfigDomainSnapshot-struct"><span class="type">GVirConfigDomainSnapshot</span></a> *conf</code></em>,
507 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
507 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
508508 <p>Updates the given snapshot's configuration according to the
509509 given GVirConfigDomainSnapshot.</p>
510510 <div class="refsect3">
528528 </tr>
529529 <tr>
530530 <td class="parameter_name"><p>error</p></td>
531 <td class="parameter_description"><p>Place-holder for error or <code class="literal">NULL</code>. </p></td>
531 <td class="parameter_description"><p>Place-holder for error or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
532532 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
533533 </tr>
534534 </tbody>
536536 </div>
537537 <div class="refsect3">
538538 <a name="gvir-domain-snapshot-set-config.returns"></a><h4>Returns</h4>
539 <p> <code class="literal">TRUE</code> if no error was reported, <code class="literal">FALSE</code> otherwise.</p>
539 <p> <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if no error was reported, <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
540540 </div>
541541 </div>
542542 </div>
627627 </div>
628628 </div>
629629 <div class="footer">
630 <hr>Generated by GTK-Doc V1.28</div>
630 <hr>Generated by GTK-Doc V1.29</div>
631631 </body>
632632 </html>
77 <link rel="up" href="ch01.html" title="Libvirt-gobject">
88 <link rel="prev" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot">
99 <link rel="next" href="GVirManager.html" title="GVirManager">
10 <meta name="generator" content="GTK-Doc V1.28 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.29 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
4141 </colgroup>
4242 <tbody>
4343 <tr>
44 <td class="function_type">const <span class="returnvalue">gchar</span> *
44 <td class="function_type">const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
4545 </td>
4646 <td class="function_name">
4747 <a class="link" href="GVirInterface.html#gvir-interface-get-name" title="gvir_interface_get_name ()">gvir_interface_get_name</a> <span class="c_punctuation">()</span>
4848 </td>
4949 </tr>
5050 <tr>
51 <td class="function_type">const <span class="returnvalue">gchar</span> *
51 <td class="function_type">const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
5252 </td>
5353 <td class="function_name">
5454 <a class="link" href="GVirInterface.html#gvir-interface-get-mac" title="gvir_interface_get_mac ()">gvir_interface_get_mac</a> <span class="c_punctuation">()</span>
8383 </div>
8484 <div class="refsect1">
8585 <a name="GVirInterface.object-hierarchy"></a><h2>Object Hierarchy</h2>
86 <pre class="screen"> GObject
86 <pre class="screen"> <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a>
8787 <span class="lineart">╰──</span> GVirInterface
8888 </pre>
8989 </div>
9494 <a name="GVirInterface.functions_details"></a><h2>Functions</h2>
9595 <div class="refsect2">
9696 <a name="gvir-interface-get-name"></a><h3>gvir_interface_get_name ()</h3>
97 <pre class="programlisting">const <span class="returnvalue">gchar</span> *
97 <pre class="programlisting">const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
9898 gvir_interface_get_name (<em class="parameter"><code><a class="link" href="GVirInterface.html" title="GVirInterface"><span class="type">GVirInterface</span></a> *iface</code></em>);</pre>
9999 </div>
100100 <hr>
101101 <div class="refsect2">
102102 <a name="gvir-interface-get-mac"></a><h3>gvir_interface_get_mac ()</h3>
103 <pre class="programlisting">const <span class="returnvalue">gchar</span> *
103 <pre class="programlisting">const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
104104 gvir_interface_get_mac (<em class="parameter"><code><a class="link" href="GVirInterface.html" title="GVirInterface"><span class="type">GVirInterface</span></a> *iface</code></em>);</pre>
105105 </div>
106106 <hr>
108108 <a name="gvir-interface-get-config"></a><h3>gvir_interface_get_config ()</h3>
109109 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigInterface.html#GVirConfigInterface-struct"><span class="returnvalue">GVirConfigInterface</span></a> *
110110 gvir_interface_get_config (<em class="parameter"><code><a class="link" href="GVirInterface.html" title="GVirInterface"><span class="type">GVirInterface</span></a> *iface</code></em>,
111 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
112 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
111 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
112 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
113113 <div class="refsect3">
114114 <a name="gvir-interface-get-config.parameters"></a><h4>Parameters</h4>
115115 <div class="informaltable"><table class="informaltable" width="100%" border="0">
140140 <div class="refsect3">
141141 <a name="gvir-interface-get-config.returns"></a><h4>Returns</h4>
142142 <p>the config. The returned object should be
143 unreffed with <code class="function">g_object_unref()</code> when no longer needed. </p>
143 unreffed with <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer needed. </p>
144144 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
145145 </div>
146146 </div>
159159 </div>
160160 </div>
161161 <div class="footer">
162 <hr>Generated by GTK-Doc V1.28</div>
162 <hr>Generated by GTK-Doc V1.29</div>
163163 </body>
164164 </html>
77 <link rel="up" href="ch01.html" title="Libvirt-gobject">
88 <link rel="prev" href="GVirInterface.html" title="GVirInterface">
99 <link rel="next" href="GVirNetworkFilter.html" title="GVirNetworkFilter">
10 <meta name="generator" content="GTK-Doc V1.28 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.29 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
6666 </tr>
6767 <tr>
6868 <td class="function_type">
69 <span class="returnvalue">GList</span> *
69 <a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
7070 </td>
7171 <td class="function_name">
7272 <a class="link" href="GVirManager.html#gvir-manager-get-connections" title="gvir_manager_get_connections ()">gvir_manager_get_connections</a> <span class="c_punctuation">()</span>
9595 <tr>
9696 <td class="signal_type"><span class="returnvalue">void</span></td>
9797 <td class="signal_name"><a class="link" href="GVirManager.html#GVirManager-connection-added" title="The “connection-added” signal">connection-added</a></td>
98 <td class="signal_flags">Run First</td>
98 <td class="signal_flags"><a href="/usr/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-RUN-FIRST:CAPS">Run First</a></td>
9999 </tr>
100100 <tr>
101101 <td class="signal_type"><span class="returnvalue">void</span></td>
102102 <td class="signal_name"><a class="link" href="GVirManager.html#GVirManager-connection-removed" title="The “connection-removed” signal">connection-removed</a></td>
103 <td class="signal_flags">Run First</td>
103 <td class="signal_flags"><a href="/usr/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-RUN-FIRST:CAPS">Run First</a></td>
104104 </tr>
105105 </tbody>
106106 </table></div>
107107 </div>
108108 <div class="refsect1">
109109 <a name="GVirManager.object-hierarchy"></a><h2>Object Hierarchy</h2>
110 <pre class="screen"> GObject
110 <pre class="screen"> <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a>
111111 <span class="lineart">╰──</span> GVirManager
112112 </pre>
113113 </div>
138138 <hr>
139139 <div class="refsect2">
140140 <a name="gvir-manager-get-connections"></a><h3>gvir_manager_get_connections ()</h3>
141 <pre class="programlisting"><span class="returnvalue">GList</span> *
141 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
142142 gvir_manager_get_connections (<em class="parameter"><code><a class="link" href="GVirManager.html" title="GVirManager"><span class="type">GVirManager</span></a> *man</code></em>);</pre>
143143 <div class="refsect3">
144144 <a name="gvir-manager-get-connections.returns"></a><h4>Returns</h4>
145145 <p>the connections.
146 The returned list should be freed with <code class="function">g_list_free()</code>, after its elements
147 have been unreffed with <code class="function">g_object_unref()</code>. </p>
146 The returned list should be freed with <a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#g-list-free"><code class="function">g_list_free()</code></a>, after its elements
147 have been unreffed with <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a>. </p>
148148 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>][<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> GVirConnection]</span></p>
149149 </div>
150150 </div>
153153 <a name="gvir-manager-find-connection-by-uri"></a><h3>gvir_manager_find_connection_by_uri ()</h3>
154154 <pre class="programlisting"><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="returnvalue">GVirConnection</span></a> *
155155 gvir_manager_find_connection_by_uri (<em class="parameter"><code><a class="link" href="GVirManager.html" title="GVirManager"><span class="type">GVirManager</span></a> *man</code></em>,
156 <em class="parameter"><code>const <span class="type">gchar</span> *uri</code></em>);</pre>
156 <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *uri</code></em>);</pre>
157157 <div class="refsect3">
158158 <a name="gvir-manager-find-connection-by-uri.returns"></a><h4>Returns</h4>
159159 <p>the connection,or NULL. The
160 returned object should be unreffed with <code class="function">g_object_unref()</code> when no longer
160 returned object should be unreffed with <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer
161161 needed. </p>
162162 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>][<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></p>
163163 </div>
173173 <pre class="programlisting"><span class="returnvalue">void</span>
174174 user_function (<a class="link" href="GVirManager.html" title="GVirManager"><span class="type">GVirManager</span></a> *gvirmanager,
175175 <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *arg1,
176 <span class="type">gpointer</span> user_data)</pre>
177 <p>Flags: Run First</p>
176 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
177 <p>Flags: <a href="/usr/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-RUN-FIRST:CAPS">Run First</a></p>
178178 </div>
179179 <hr>
180180 <div class="refsect2">
182182 <pre class="programlisting"><span class="returnvalue">void</span>
183183 user_function (<a class="link" href="GVirManager.html" title="GVirManager"><span class="type">GVirManager</span></a> *gvirmanager,
184184 <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *arg1,
185 <span class="type">gpointer</span> user_data)</pre>
186 <p>Flags: Run First</p>
185 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
186 <p>Flags: <a href="/usr/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-RUN-FIRST:CAPS">Run First</a></p>
187187 </div>
188188 </div>
189189 </div>
190190 <div class="footer">
191 <hr>Generated by GTK-Doc V1.28</div>
191 <hr>Generated by GTK-Doc V1.29</div>
192192 </body>
193193 </html>
77 <link rel="up" href="ch01.html" title="Libvirt-gobject">
88 <link rel="prev" href="GVirNetworkFilter.html" title="GVirNetworkFilter">
99 <link rel="next" href="GVirNodeDevice.html" title="GVirNodeDevice">
10 <meta name="generator" content="GTK-Doc V1.28 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.29 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
4141 </colgroup>
4242 <tbody>
4343 <tr>
44 <td class="function_type">const <span class="returnvalue">gchar</span> *
44 <td class="function_type">const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
4545 </td>
4646 <td class="function_name">
4747 <a class="link" href="GVirNetwork.html#gvir-network-get-name" title="gvir_network_get_name ()">gvir_network_get_name</a> <span class="c_punctuation">()</span>
4848 </td>
4949 </tr>
5050 <tr>
51 <td class="function_type">const <span class="returnvalue">gchar</span> *
51 <td class="function_type">const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
5252 </td>
5353 <td class="function_name">
5454 <a class="link" href="GVirNetwork.html#gvir-network-get-uuid" title="gvir_network_get_uuid ()">gvir_network_get_uuid</a> <span class="c_punctuation">()</span>
6464 </tr>
6565 <tr>
6666 <td class="function_type">
67 <span class="returnvalue">GList</span> *
67 <a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
6868 </td>
6969 <td class="function_name">
7070 <a class="link" href="GVirNetwork.html#gvir-network-get-dhcp-leases" title="gvir_network_get_dhcp_leases ()">gvir_network_get_dhcp_leases</a> <span class="c_punctuation">()</span>
9191 </div>
9292 <div class="refsect1">
9393 <a name="GVirNetwork.object-hierarchy"></a><h2>Object Hierarchy</h2>
94 <pre class="screen"> GObject
94 <pre class="screen"> <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a>
9595 <span class="lineart">╰──</span> GVirNetwork
9696 </pre>
9797 </div>
102102 <a name="GVirNetwork.functions_details"></a><h2>Functions</h2>
103103 <div class="refsect2">
104104 <a name="gvir-network-get-name"></a><h3>gvir_network_get_name ()</h3>
105 <pre class="programlisting">const <span class="returnvalue">gchar</span> *
105 <pre class="programlisting">const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
106106 gvir_network_get_name (<em class="parameter"><code><a class="link" href="GVirNetwork.html" title="GVirNetwork"><span class="type">GVirNetwork</span></a> *network</code></em>);</pre>
107107 </div>
108108 <hr>
109109 <div class="refsect2">
110110 <a name="gvir-network-get-uuid"></a><h3>gvir_network_get_uuid ()</h3>
111 <pre class="programlisting">const <span class="returnvalue">gchar</span> *
111 <pre class="programlisting">const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
112112 gvir_network_get_uuid (<em class="parameter"><code><a class="link" href="GVirNetwork.html" title="GVirNetwork"><span class="type">GVirNetwork</span></a> *network</code></em>);</pre>
113113 </div>
114114 <hr>
116116 <a name="gvir-network-get-config"></a><h3>gvir_network_get_config ()</h3>
117117 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigNetwork.html#GVirConfigNetwork-struct"><span class="returnvalue">GVirConfigNetwork</span></a> *
118118 gvir_network_get_config (<em class="parameter"><code><a class="link" href="GVirNetwork.html" title="GVirNetwork"><span class="type">GVirNetwork</span></a> *network</code></em>,
119 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
120 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
119 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
120 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
121121 <div class="refsect3">
122122 <a name="gvir-network-get-config.parameters"></a><h4>Parameters</h4>
123123 <div class="informaltable"><table class="informaltable" width="100%" border="0">
148148 <div class="refsect3">
149149 <a name="gvir-network-get-config.returns"></a><h4>Returns</h4>
150150 <p>the config. The returned object should be
151 unreffed with <code class="function">g_object_unref()</code> when no longer needed. </p>
151 unreffed with <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer needed. </p>
152152 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
153153 </div>
154154 </div>
155155 <hr>
156156 <div class="refsect2">
157157 <a name="gvir-network-get-dhcp-leases"></a><h3>gvir_network_get_dhcp_leases ()</h3>
158 <pre class="programlisting"><span class="returnvalue">GList</span> *
158 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
159159 gvir_network_get_dhcp_leases (<em class="parameter"><code><a class="link" href="GVirNetwork.html" title="GVirNetwork"><span class="type">GVirNetwork</span></a> *network</code></em>,
160160 <em class="parameter"><code>const <span class="type">char</span> *mac</code></em>,
161 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
162 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
161 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
162 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
163163 <p>This function fetches leases info of guests in the specified network. If the
164164 optional parameter <em class="parameter"><code>mac</code></em>
165165 is specified, the returned list will contain only
203203 <a name="gvir-network-get-dhcp-leases.returns"></a><h4>Returns</h4>
204204 <p>the
205205 list of network leases. Each object in the returned list should be unreffed
206 with <code class="function">g_object_unref()</code> and the list itself using g_list_free, when no longer
206 with <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> and the list itself using g_list_free, when no longer
207207 needed. </p>
208208 <p><span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> LibvirtGObject.NetworkDHCPLease][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
209209 </div>
223223 </div>
224224 </div>
225225 <div class="footer">
226 <hr>Generated by GTK-Doc V1.28</div>
226 <hr>Generated by GTK-Doc V1.29</div>
227227 </body>
228228 </html>
77 <link rel="up" href="ch01.html" title="Libvirt-gobject">
88 <link rel="prev" href="GVirManager.html" title="GVirManager">
99 <link rel="next" href="GVirNetwork.html" title="GVirNetwork">
10 <meta name="generator" content="GTK-Doc V1.28 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.29 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
4141 </colgroup>
4242 <tbody>
4343 <tr>
44 <td class="function_type">const <span class="returnvalue">gchar</span> *
44 <td class="function_type">const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
4545 </td>
4646 <td class="function_name">
4747 <a class="link" href="GVirNetworkFilter.html#gvir-network-filter-get-name" title="gvir_network_filter_get_name ()">gvir_network_filter_get_name</a> <span class="c_punctuation">()</span>
4848 </td>
4949 </tr>
5050 <tr>
51 <td class="function_type">const <span class="returnvalue">gchar</span> *
51 <td class="function_type">const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
5252 </td>
5353 <td class="function_name">
5454 <a class="link" href="GVirNetworkFilter.html#gvir-network-filter-get-uuid" title="gvir_network_filter_get_uuid ()">gvir_network_filter_get_uuid</a> <span class="c_punctuation">()</span>
8383 </div>
8484 <div class="refsect1">
8585 <a name="GVirNetworkFilter.object-hierarchy"></a><h2>Object Hierarchy</h2>
86 <pre class="screen"> GObject
86 <pre class="screen"> <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a>
8787 <span class="lineart">╰──</span> GVirNetworkFilter
8888 </pre>
8989 </div>
9494 <a name="GVirNetworkFilter.functions_details"></a><h2>Functions</h2>
9595 <div class="refsect2">
9696 <a name="gvir-network-filter-get-name"></a><h3>gvir_network_filter_get_name ()</h3>
97 <pre class="programlisting">const <span class="returnvalue">gchar</span> *
97 <pre class="programlisting">const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
9898 gvir_network_filter_get_name (<em class="parameter"><code><a class="link" href="GVirNetworkFilter.html" title="GVirNetworkFilter"><span class="type">GVirNetworkFilter</span></a> *filter</code></em>);</pre>
9999 </div>
100100 <hr>
101101 <div class="refsect2">
102102 <a name="gvir-network-filter-get-uuid"></a><h3>gvir_network_filter_get_uuid ()</h3>
103 <pre class="programlisting">const <span class="returnvalue">gchar</span> *
103 <pre class="programlisting">const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
104104 gvir_network_filter_get_uuid (<em class="parameter"><code><a class="link" href="GVirNetworkFilter.html" title="GVirNetworkFilter"><span class="type">GVirNetworkFilter</span></a> *filter</code></em>);</pre>
105105 </div>
106106 <hr>
108108 <a name="gvir-network-filter-get-config"></a><h3>gvir_network_filter_get_config ()</h3>
109109 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigNetworkFilter.html#GVirConfigNetworkFilter-struct"><span class="returnvalue">GVirConfigNetworkFilter</span></a> *
110110 gvir_network_filter_get_config (<em class="parameter"><code><a class="link" href="GVirNetworkFilter.html" title="GVirNetworkFilter"><span class="type">GVirNetworkFilter</span></a> *filter</code></em>,
111 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
112 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
111 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
112 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
113113 <div class="refsect3">
114114 <a name="gvir-network-filter-get-config.parameters"></a><h4>Parameters</h4>
115115 <div class="informaltable"><table class="informaltable" width="100%" border="0">
140140 <div class="refsect3">
141141 <a name="gvir-network-filter-get-config.returns"></a><h4>Returns</h4>
142142 <p>the config. The returned object should be
143 unreffed with <code class="function">g_object_unref()</code> when no longer needed. </p>
143 unreffed with <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer needed. </p>
144144 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
145145 </div>
146146 </div>
159159 </div>
160160 </div>
161161 <div class="footer">
162 <hr>Generated by GTK-Doc V1.28</div>
162 <hr>Generated by GTK-Doc V1.29</div>
163163 </body>
164164 </html>
77 <link rel="up" href="ch01.html" title="Libvirt-gobject">
88 <link rel="prev" href="GVirNetwork.html" title="GVirNetwork">
99 <link rel="next" href="GVirSecret.html" title="GVirSecret">
10 <meta name="generator" content="GTK-Doc V1.28 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.29 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
4141 </colgroup>
4242 <tbody>
4343 <tr>
44 <td class="function_type">const <span class="returnvalue">gchar</span> *
44 <td class="function_type">const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
4545 </td>
4646 <td class="function_name">
4747 <a class="link" href="GVirNodeDevice.html#gvir-node-device-get-name" title="gvir_node_device_get_name ()">gvir_node_device_get_name</a> <span class="c_punctuation">()</span>
7676 </div>
7777 <div class="refsect1">
7878 <a name="GVirNodeDevice.object-hierarchy"></a><h2>Object Hierarchy</h2>
79 <pre class="screen"> GObject
79 <pre class="screen"> <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a>
8080 <span class="lineart">╰──</span> GVirNodeDevice
8181 </pre>
8282 </div>
8787 <a name="GVirNodeDevice.functions_details"></a><h2>Functions</h2>
8888 <div class="refsect2">
8989 <a name="gvir-node-device-get-name"></a><h3>gvir_node_device_get_name ()</h3>
90 <pre class="programlisting">const <span class="returnvalue">gchar</span> *
90 <pre class="programlisting">const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
9191 gvir_node_device_get_name (<em class="parameter"><code><a class="link" href="GVirNodeDevice.html" title="GVirNodeDevice"><span class="type">GVirNodeDevice</span></a> *device</code></em>);</pre>
9292 </div>
9393 <hr>
9595 <a name="gvir-node-device-get-config"></a><h3>gvir_node_device_get_config ()</h3>
9696 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigNodeDevice.html#GVirConfigNodeDevice-struct"><span class="returnvalue">GVirConfigNodeDevice</span></a> *
9797 gvir_node_device_get_config (<em class="parameter"><code><a class="link" href="GVirNodeDevice.html" title="GVirNodeDevice"><span class="type">GVirNodeDevice</span></a> *device</code></em>,
98 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
99 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
98 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
99 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
100100 <div class="refsect3">
101101 <a name="gvir-node-device-get-config.parameters"></a><h4>Parameters</h4>
102102 <div class="informaltable"><table class="informaltable" width="100%" border="0">
127127 <div class="refsect3">
128128 <a name="gvir-node-device-get-config.returns"></a><h4>Returns</h4>
129129 <p>the config. The returned object should be
130 unreffed with <code class="function">g_object_unref()</code> when no longer needed. </p>
130 unreffed with <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer needed. </p>
131131 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
132132 </div>
133133 </div>
146146 </div>
147147 </div>
148148 <div class="footer">
149 <hr>Generated by GTK-Doc V1.28</div>
149 <hr>Generated by GTK-Doc V1.29</div>
150150 </body>
151151 </html>
77 <link rel="up" href="ch01.html" title="Libvirt-gobject">
88 <link rel="prev" href="GVirNodeDevice.html" title="GVirNodeDevice">
99 <link rel="next" href="GVirStoragePool.html" title="GVirStoragePool">
10 <meta name="generator" content="GTK-Doc V1.28 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.29 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
4141 </colgroup>
4242 <tbody>
4343 <tr>
44 <td class="function_type">const <span class="returnvalue">gchar</span> *
44 <td class="function_type">const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
4545 </td>
4646 <td class="function_name">
4747 <a class="link" href="GVirSecret.html#gvir-secret-get-name" title="gvir_secret_get_name ()">gvir_secret_get_name</a> <span class="c_punctuation">()</span>
4848 </td>
4949 </tr>
5050 <tr>
51 <td class="function_type">const <span class="returnvalue">gchar</span> *
51 <td class="function_type">const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
5252 </td>
5353 <td class="function_name">
5454 <a class="link" href="GVirSecret.html#gvir-secret-get-uuid" title="gvir_secret_get_uuid ()">gvir_secret_get_uuid</a> <span class="c_punctuation">()</span>
8383 </div>
8484 <div class="refsect1">
8585 <a name="GVirSecret.object-hierarchy"></a><h2>Object Hierarchy</h2>
86 <pre class="screen"> GObject
86 <pre class="screen"> <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a>
8787 <span class="lineart">╰──</span> GVirSecret
8888 </pre>
8989 </div>
9494 <a name="GVirSecret.functions_details"></a><h2>Functions</h2>
9595 <div class="refsect2">
9696 <a name="gvir-secret-get-name"></a><h3>gvir_secret_get_name ()</h3>
97 <pre class="programlisting">const <span class="returnvalue">gchar</span> *
97 <pre class="programlisting">const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
9898 gvir_secret_get_name (<em class="parameter"><code><a class="link" href="GVirSecret.html" title="GVirSecret"><span class="type">GVirSecret</span></a> *secret</code></em>);</pre>
9999 </div>
100100 <hr>
101101 <div class="refsect2">
102102 <a name="gvir-secret-get-uuid"></a><h3>gvir_secret_get_uuid ()</h3>
103 <pre class="programlisting">const <span class="returnvalue">gchar</span> *
103 <pre class="programlisting">const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
104104 gvir_secret_get_uuid (<em class="parameter"><code><a class="link" href="GVirSecret.html" title="GVirSecret"><span class="type">GVirSecret</span></a> *secret</code></em>);</pre>
105105 </div>
106106 <hr>
108108 <a name="gvir-secret-get-config"></a><h3>gvir_secret_get_config ()</h3>
109109 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigSecret.html#GVirConfigSecret-struct"><span class="returnvalue">GVirConfigSecret</span></a> *
110110 gvir_secret_get_config (<em class="parameter"><code><a class="link" href="GVirSecret.html" title="GVirSecret"><span class="type">GVirSecret</span></a> *secret</code></em>,
111 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
112 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
111 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
112 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
113113 <div class="refsect3">
114114 <a name="gvir-secret-get-config.parameters"></a><h4>Parameters</h4>
115115 <div class="informaltable"><table class="informaltable" width="100%" border="0">
140140 <div class="refsect3">
141141 <a name="gvir-secret-get-config.returns"></a><h4>Returns</h4>
142142 <p>the config. The returned object should be
143 unreffed with <code class="function">g_object_unref()</code> when no longer needed. </p>
143 unreffed with <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer needed. </p>
144144 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
145145 </div>
146146 </div>
159159 </div>
160160 </div>
161161 <div class="footer">
162 <hr>Generated by GTK-Doc V1.28</div>
162 <hr>Generated by GTK-Doc V1.29</div>
163163 </body>
164164 </html>
77 <link rel="up" href="ch01.html" title="Libvirt-gobject">
88 <link rel="prev" href="GVirSecret.html" title="GVirSecret">
99 <link rel="next" href="GVirStorageVol.html" title="GVirStorageVol">
10 <meta name="generator" content="GTK-Doc V1.28 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.29 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
4141 </colgroup>
4242 <tbody>
4343 <tr>
44 <td class="function_type">const <span class="returnvalue">gchar</span> *
44 <td class="function_type">const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
4545 </td>
4646 <td class="function_name">
4747 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-get-name" title="gvir_storage_pool_get_name ()">gvir_storage_pool_get_name</a> <span class="c_punctuation">()</span>
4848 </td>
4949 </tr>
5050 <tr>
51 <td class="function_type">const <span class="returnvalue">gchar</span> *
51 <td class="function_type">const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
5252 </td>
5353 <td class="function_name">
5454 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-get-uuid" title="gvir_storage_pool_get_uuid ()">gvir_storage_pool_get_uuid</a> <span class="c_punctuation">()</span>
5656 </tr>
5757 <tr>
5858 <td class="function_type">
59 <span class="returnvalue">gboolean</span>
59 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
6060 </td>
6161 <td class="function_name">
6262 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-get-active" title="gvir_storage_pool_get_active ()">gvir_storage_pool_get_active</a> <span class="c_punctuation">()</span>
6464 </tr>
6565 <tr>
6666 <td class="function_type">
67 <span class="returnvalue">gboolean</span>
67 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
6868 </td>
6969 <td class="function_name">
7070 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-get-persistent" title="gvir_storage_pool_get_persistent ()">gvir_storage_pool_get_persistent</a> <span class="c_punctuation">()</span>
8888 </tr>
8989 <tr>
9090 <td class="function_type">
91 <span class="returnvalue">gboolean</span>
91 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
9292 </td>
9393 <td class="function_name">
9494 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-refresh" title="gvir_storage_pool_refresh ()">gvir_storage_pool_refresh</a> <span class="c_punctuation">()</span>
104104 </tr>
105105 <tr>
106106 <td class="function_type">
107 <span class="returnvalue">gboolean</span>
107 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
108108 </td>
109109 <td class="function_name">
110110 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-refresh-finish" title="gvir_storage_pool_refresh_finish ()">gvir_storage_pool_refresh_finish</a> <span class="c_punctuation">()</span>
112112 </tr>
113113 <tr>
114114 <td class="function_type">
115 <span class="returnvalue">GList</span> *
115 <a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
116116 </td>
117117 <td class="function_name">
118118 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-get-volumes" title="gvir_storage_pool_get_volumes ()">gvir_storage_pool_get_volumes</a> <span class="c_punctuation">()</span>
136136 </tr>
137137 <tr>
138138 <td class="function_type">
139 <span class="returnvalue">gboolean</span>
139 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
140140 </td>
141141 <td class="function_name">
142142 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-build" title="gvir_storage_pool_build ()">gvir_storage_pool_build</a> <span class="c_punctuation">()</span>
152152 </tr>
153153 <tr>
154154 <td class="function_type">
155 <span class="returnvalue">gboolean</span>
155 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
156156 </td>
157157 <td class="function_name">
158158 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-build-finish" title="gvir_storage_pool_build_finish ()">gvir_storage_pool_build_finish</a> <span class="c_punctuation">()</span>
160160 </tr>
161161 <tr>
162162 <td class="function_type">
163 <span class="returnvalue">gboolean</span>
163 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
164164 </td>
165165 <td class="function_name">
166166 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-undefine" title="gvir_storage_pool_undefine ()">gvir_storage_pool_undefine</a> <span class="c_punctuation">()</span>
176176 </tr>
177177 <tr>
178178 <td class="function_type">
179 <span class="returnvalue">gboolean</span>
179 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
180180 </td>
181181 <td class="function_name">
182182 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-undefine-finish" title="gvir_storage_pool_undefine_finish ()">gvir_storage_pool_undefine_finish</a> <span class="c_punctuation">()</span>
184184 </tr>
185185 <tr>
186186 <td class="function_type">
187 <span class="returnvalue">gboolean</span>
187 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
188188 </td>
189189 <td class="function_name">
190190 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-start" title="gvir_storage_pool_start ()">gvir_storage_pool_start</a> <span class="c_punctuation">()</span>
200200 </tr>
201201 <tr>
202202 <td class="function_type">
203 <span class="returnvalue">gboolean</span>
203 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
204204 </td>
205205 <td class="function_name">
206206 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-start-finish" title="gvir_storage_pool_start_finish ()">gvir_storage_pool_start_finish</a> <span class="c_punctuation">()</span>
208208 </tr>
209209 <tr>
210210 <td class="function_type">
211 <span class="returnvalue">gboolean</span>
211 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
212212 </td>
213213 <td class="function_name">
214214 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-stop" title="gvir_storage_pool_stop ()">gvir_storage_pool_stop</a> <span class="c_punctuation">()</span>
224224 </tr>
225225 <tr>
226226 <td class="function_type">
227 <span class="returnvalue">gboolean</span>
227 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
228228 </td>
229229 <td class="function_name">
230230 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-stop-finish" title="gvir_storage_pool_stop_finish ()">gvir_storage_pool_stop_finish</a> <span class="c_punctuation">()</span>
232232 </tr>
233233 <tr>
234234 <td class="function_type">
235 <span class="returnvalue">gboolean</span>
235 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
236236 </td>
237237 <td class="function_name">
238238 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-delete" title="gvir_storage_pool_delete ()">gvir_storage_pool_delete</a> <span class="c_punctuation">()</span>
248248 </tr>
249249 <tr>
250250 <td class="function_type">
251 <span class="returnvalue">gboolean</span>
251 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
252252 </td>
253253 <td class="function_name">
254254 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-delete-finish" title="gvir_storage_pool_delete_finish ()">gvir_storage_pool_delete_finish</a> <span class="c_punctuation">()</span>
256256 </tr>
257257 <tr>
258258 <td class="function_type">
259 <span class="returnvalue">gboolean</span>
259 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
260260 </td>
261261 <td class="function_name">
262262 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-get-autostart" title="gvir_storage_pool_get_autostart ()">gvir_storage_pool_get_autostart</a> <span class="c_punctuation">()</span>
264264 </tr>
265265 <tr>
266266 <td class="function_type">
267 <span class="returnvalue">gboolean</span>
267 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
268268 </td>
269269 <td class="function_name">
270270 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-set-autostart" title="gvir_storage_pool_set_autostart ()">gvir_storage_pool_set_autostart</a> <span class="c_punctuation">()</span>
306306 <a name="GVirStoragePool.object-hierarchy"></a><h2>Object Hierarchy</h2>
307307 <pre class="screen"> <a href="/usr/share/gtk-doc/html/gobject/gobject-Boxed-Types.html">GBoxed</a>
308308 <span class="lineart">╰──</span> GVirStoragePoolInfo
309 GObject
309 <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a>
310310 <span class="lineart">╰──</span> GVirStoragePool
311311 </pre>
312312 </div>
317317 <a name="GVirStoragePool.functions_details"></a><h2>Functions</h2>
318318 <div class="refsect2">
319319 <a name="gvir-storage-pool-get-name"></a><h3>gvir_storage_pool_get_name ()</h3>
320 <pre class="programlisting">const <span class="returnvalue">gchar</span> *
320 <pre class="programlisting">const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
321321 gvir_storage_pool_get_name (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>);</pre>
322322 </div>
323323 <hr>
324324 <div class="refsect2">
325325 <a name="gvir-storage-pool-get-uuid"></a><h3>gvir_storage_pool_get_uuid ()</h3>
326 <pre class="programlisting">const <span class="returnvalue">gchar</span> *
326 <pre class="programlisting">const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
327327 gvir_storage_pool_get_uuid (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>);</pre>
328328 </div>
329329 <hr>
330330 <div class="refsect2">
331331 <a name="gvir-storage-pool-get-active"></a><h3>gvir_storage_pool_get_active ()</h3>
332 <pre class="programlisting"><span class="returnvalue">gboolean</span>
332 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
333333 gvir_storage_pool_get_active (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>);</pre>
334334 </div>
335335 <hr>
336336 <div class="refsect2">
337337 <a name="gvir-storage-pool-get-persistent"></a><h3>gvir_storage_pool_get_persistent ()</h3>
338 <pre class="programlisting"><span class="returnvalue">gboolean</span>
338 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
339339 gvir_storage_pool_get_persistent (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>);</pre>
340340 </div>
341341 <hr>
343343 <a name="gvir-storage-pool-get-config"></a><h3>gvir_storage_pool_get_config ()</h3>
344344 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigStoragePool.html#GVirConfigStoragePool-struct"><span class="returnvalue">GVirConfigStoragePool</span></a> *
345345 gvir_storage_pool_get_config (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
346 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
347 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
346 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
347 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
348348 <div class="refsect3">
349349 <a name="gvir-storage-pool-get-config.parameters"></a><h4>Parameters</h4>
350350 <div class="informaltable"><table class="informaltable" width="100%" border="0">
375375 <div class="refsect3">
376376 <a name="gvir-storage-pool-get-config.returns"></a><h4>Returns</h4>
377377 <p>the config. The returned object should be
378 unreffed with <code class="function">g_object_unref()</code> when no longer needed. </p>
378 unreffed with <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer needed. </p>
379379 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
380380 </div>
381381 </div>
384384 <a name="gvir-storage-pool-get-info"></a><h3>gvir_storage_pool_get_info ()</h3>
385385 <pre class="programlisting"><a class="link" href="GVirStoragePool.html#GVirStoragePoolInfo"><span class="returnvalue">GVirStoragePoolInfo</span></a> *
386386 gvir_storage_pool_get_info (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
387 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
387 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
388388 <div class="refsect3">
389389 <a name="gvir-storage-pool-get-info.parameters"></a><h4>Parameters</h4>
390390 <div class="informaltable"><table class="informaltable" width="100%" border="0">
410410 <div class="refsect3">
411411 <a name="gvir-storage-pool-get-info.returns"></a><h4>Returns</h4>
412412 <p>the info. The returned pointer should be
413 freed using <code class="function"><GTKDOCLINK HREF="g-boxed-free"><code class="function">g_boxed_free()</code></code></GTKDOCLINK> when no longer needed. </p>
413 freed using <a href="/usr/share/gtk-doc/html/gobject/gobject-Boxed-Types.html#g-boxed-free"><code class="function"><GTKDOCLINK HREF="g-boxed-free"><code class="function">g_boxed_free()</code></a></code></GTKDOCLINK> when no longer needed. </p>
414414 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
415415 </div>
416416 </div>
417417 <hr>
418418 <div class="refsect2">
419419 <a name="gvir-storage-pool-refresh"></a><h3>gvir_storage_pool_refresh ()</h3>
420 <pre class="programlisting"><span class="returnvalue">gboolean</span>
420 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
421421 gvir_storage_pool_refresh (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
422 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
423 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
422 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GCancellable.html#GCancellable-struct"><span class="type">GCancellable</span></a> *cancellable</code></em>,
423 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
424424 <div class="refsect3">
425425 <a name="gvir-storage-pool-refresh.parameters"></a><h4>Parameters</h4>
426426 <div class="informaltable"><table class="informaltable" width="100%" border="0">
449449 <a name="gvir-storage-pool-refresh-async"></a><h3>gvir_storage_pool_refresh_async ()</h3>
450450 <pre class="programlisting"><span class="returnvalue">void</span>
451451 gvir_storage_pool_refresh_async (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
452 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
453 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
454 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
452 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GCancellable.html#GCancellable-struct"><span class="type">GCancellable</span></a> *cancellable</code></em>,
453 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
454 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
455455 <div class="refsect3">
456456 <a name="gvir-storage-pool-refresh-async.parameters"></a><h4>Parameters</h4>
457457 <div class="informaltable"><table class="informaltable" width="100%" border="0">
488488 <hr>
489489 <div class="refsect2">
490490 <a name="gvir-storage-pool-refresh-finish"></a><h3>gvir_storage_pool_refresh_finish ()</h3>
491 <pre class="programlisting"><span class="returnvalue">gboolean</span>
491 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
492492 gvir_storage_pool_refresh_finish (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
493 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
494 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
493 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncResult-struct"><span class="type">GAsyncResult</span></a> *result</code></em>,
494 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
495495 <div class="refsect3">
496496 <a name="gvir-storage-pool-refresh-finish.parameters"></a><h4>Parameters</h4>
497497 <div class="informaltable"><table class="informaltable" width="100%" border="0">
518518 <hr>
519519 <div class="refsect2">
520520 <a name="gvir-storage-pool-get-volumes"></a><h3>gvir_storage_pool_get_volumes ()</h3>
521 <pre class="programlisting"><span class="returnvalue">GList</span> *
521 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
522522 gvir_storage_pool_get_volumes (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>);</pre>
523523 <div class="refsect3">
524524 <a name="gvir-storage-pool-get-volumes.parameters"></a><h4>Parameters</h4>
538538 <div class="refsect3">
539539 <a name="gvir-storage-pool-get-volumes.returns"></a><h4>Returns</h4>
540540 <p>List of <a class="link" href="GVirStorageVol.html" title="GVirStorageVol"><span class="type">GVirStorageVol</span></a>. The returned list should be freed with
541 <code class="function">g_list_free()</code>, after its elements have been unreffed with
542 <code class="function">g_object_unref()</code>. </p>
541 <a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#g-list-free"><code class="function">g_list_free()</code></a>, after its elements have been unreffed with
542 <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a>. </p>
543543 <p><span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> LibvirtGObject.StorageVol][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
544544 </div>
545545 </div>
548548 <a name="gvir-storage-pool-get-volume"></a><h3>gvir_storage_pool_get_volume ()</h3>
549549 <pre class="programlisting"><a class="link" href="GVirStorageVol.html" title="GVirStorageVol"><span class="returnvalue">GVirStorageVol</span></a> *
550550 gvir_storage_pool_get_volume (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
551 <em class="parameter"><code>const <span class="type">gchar</span> *name</code></em>);</pre>
551 <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>);</pre>
552552 <div class="refsect3">
553553 <a name="gvir-storage-pool-get-volume.parameters"></a><h4>Parameters</h4>
554554 <div class="informaltable"><table class="informaltable" width="100%" border="0">
574574 <div class="refsect3">
575575 <a name="gvir-storage-pool-get-volume.returns"></a><h4>Returns</h4>
576576 <p>the <a class="link" href="GVirStorageVol.html" title="GVirStorageVol"><span class="type">GVirStorageVol</span></a>, or NULL. The
577 returned object should be unreffed with <code class="function">g_object_unref()</code> when no longer
577 returned object should be unreffed with <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer
578578 needed. </p>
579579 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
580580 </div>
585585 <pre class="programlisting"><a class="link" href="GVirStorageVol.html" title="GVirStorageVol"><span class="returnvalue">GVirStorageVol</span></a> *
586586 gvir_storage_pool_create_volume (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
587587 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigStorageVol.html#GVirConfigStorageVol-struct"><span class="type">GVirConfigStorageVol</span></a> *conf</code></em>,
588 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
588 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
589589 <div class="refsect3">
590590 <a name="gvir-storage-pool-create-volume.parameters"></a><h4>Parameters</h4>
591591 <div class="informaltable"><table class="informaltable" width="100%" border="0">
616616 <div class="refsect3">
617617 <a name="gvir-storage-pool-create-volume.returns"></a><h4>Returns</h4>
618618 <p>the newly created volume. The returned object
619 should be unreffed with <code class="function">g_object_unref()</code> when no longer needed. </p>
619 should be unreffed with <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer needed. </p>
620620 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
621621 </div>
622622 </div>
623623 <hr>
624624 <div class="refsect2">
625625 <a name="gvir-storage-pool-build"></a><h3>gvir_storage_pool_build ()</h3>
626 <pre class="programlisting"><span class="returnvalue">gboolean</span>
626 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
627627 gvir_storage_pool_build (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
628 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
629 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
628 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
629 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
630630 <div class="refsect3">
631631 <a name="gvir-storage-pool-build.parameters"></a><h4>Parameters</h4>
632632 <div class="informaltable"><table class="informaltable" width="100%" border="0">
648648 </tr>
649649 <tr>
650650 <td class="parameter_name"><p>err</p></td>
651 <td class="parameter_description"><p>return location for any <span class="type">GError</span></p></td>
651 <td class="parameter_description"><p>return location for any <a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a></p></td>
652652 <td class="parameter_annotations"> </td>
653653 </tr>
654654 </tbody>
664664 <a name="gvir-storage-pool-build-async"></a><h3>gvir_storage_pool_build_async ()</h3>
665665 <pre class="programlisting"><span class="returnvalue">void</span>
666666 gvir_storage_pool_build_async (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
667 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
668 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
669 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
670 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
667 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
668 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GCancellable.html#GCancellable-struct"><span class="type">GCancellable</span></a> *cancellable</code></em>,
669 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
670 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
671671 <div class="refsect3">
672672 <a name="gvir-storage-pool-build-async.parameters"></a><h4>Parameters</h4>
673673 <div class="informaltable"><table class="informaltable" width="100%" border="0">
709709 <hr>
710710 <div class="refsect2">
711711 <a name="gvir-storage-pool-build-finish"></a><h3>gvir_storage_pool_build_finish ()</h3>
712 <pre class="programlisting"><span class="returnvalue">gboolean</span>
712 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
713713 gvir_storage_pool_build_finish (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
714 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
715 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
714 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncResult-struct"><span class="type">GAsyncResult</span></a> *result</code></em>,
715 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
716716 <div class="refsect3">
717717 <a name="gvir-storage-pool-build-finish.parameters"></a><h4>Parameters</h4>
718718 <div class="informaltable"><table class="informaltable" width="100%" border="0">
734734 </tr>
735735 <tr>
736736 <td class="parameter_name"><p>err</p></td>
737 <td class="parameter_description"><p>return location for any <span class="type">GError</span></p></td>
737 <td class="parameter_description"><p>return location for any <a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a></p></td>
738738 <td class="parameter_annotations"> </td>
739739 </tr>
740740 </tbody>
748748 <hr>
749749 <div class="refsect2">
750750 <a name="gvir-storage-pool-undefine"></a><h3>gvir_storage_pool_undefine ()</h3>
751 <pre class="programlisting"><span class="returnvalue">gboolean</span>
751 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
752752 gvir_storage_pool_undefine (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
753 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
753 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
754754 <div class="refsect3">
755755 <a name="gvir-storage-pool-undefine.parameters"></a><h4>Parameters</h4>
756756 <div class="informaltable"><table class="informaltable" width="100%" border="0">
767767 </tr>
768768 <tr>
769769 <td class="parameter_name"><p>err</p></td>
770 <td class="parameter_description"><p>return location for any <span class="type">GError</span></p></td>
770 <td class="parameter_description"><p>return location for any <a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a></p></td>
771771 <td class="parameter_annotations"> </td>
772772 </tr>
773773 </tbody>
783783 <a name="gvir-storage-pool-undefine-async"></a><h3>gvir_storage_pool_undefine_async ()</h3>
784784 <pre class="programlisting"><span class="returnvalue">void</span>
785785 gvir_storage_pool_undefine_async (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
786 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
787 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
788 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
786 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GCancellable.html#GCancellable-struct"><span class="type">GCancellable</span></a> *cancellable</code></em>,
787 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
788 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
789789 <div class="refsect3">
790790 <a name="gvir-storage-pool-undefine-async.parameters"></a><h4>Parameters</h4>
791791 <div class="informaltable"><table class="informaltable" width="100%" border="0">
822822 <hr>
823823 <div class="refsect2">
824824 <a name="gvir-storage-pool-undefine-finish"></a><h3>gvir_storage_pool_undefine_finish ()</h3>
825 <pre class="programlisting"><span class="returnvalue">gboolean</span>
825 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
826826 gvir_storage_pool_undefine_finish (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
827 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
828 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
827 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncResult-struct"><span class="type">GAsyncResult</span></a> *result</code></em>,
828 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
829829 <div class="refsect3">
830830 <a name="gvir-storage-pool-undefine-finish.parameters"></a><h4>Parameters</h4>
831831 <div class="informaltable"><table class="informaltable" width="100%" border="0">
847847 </tr>
848848 <tr>
849849 <td class="parameter_name"><p>err</p></td>
850 <td class="parameter_description"><p>return location for any <span class="type">GError</span></p></td>
850 <td class="parameter_description"><p>return location for any <a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a></p></td>
851851 <td class="parameter_annotations"> </td>
852852 </tr>
853853 </tbody>
861861 <hr>
862862 <div class="refsect2">
863863 <a name="gvir-storage-pool-start"></a><h3>gvir_storage_pool_start ()</h3>
864 <pre class="programlisting"><span class="returnvalue">gboolean</span>
864 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
865865 gvir_storage_pool_start (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
866 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
867 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
866 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
867 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
868868 <div class="refsect3">
869869 <a name="gvir-storage-pool-start.parameters"></a><h4>Parameters</h4>
870870 <div class="informaltable"><table class="informaltable" width="100%" border="0">
886886 </tr>
887887 <tr>
888888 <td class="parameter_name"><p>err</p></td>
889 <td class="parameter_description"><p>return location for any <span class="type">GError</span></p></td>
889 <td class="parameter_description"><p>return location for any <a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a></p></td>
890890 <td class="parameter_annotations"> </td>
891891 </tr>
892892 </tbody>
902902 <a name="gvir-storage-pool-start-async"></a><h3>gvir_storage_pool_start_async ()</h3>
903903 <pre class="programlisting"><span class="returnvalue">void</span>
904904 gvir_storage_pool_start_async (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
905 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
906 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
907 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
908 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
905 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
906 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GCancellable.html#GCancellable-struct"><span class="type">GCancellable</span></a> *cancellable</code></em>,
907 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
908 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
909909 <div class="refsect3">
910910 <a name="gvir-storage-pool-start-async.parameters"></a><h4>Parameters</h4>
911911 <div class="informaltable"><table class="informaltable" width="100%" border="0">
947947 <hr>
948948 <div class="refsect2">
949949 <a name="gvir-storage-pool-start-finish"></a><h3>gvir_storage_pool_start_finish ()</h3>
950 <pre class="programlisting"><span class="returnvalue">gboolean</span>
950 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
951951 gvir_storage_pool_start_finish (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
952 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
953 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
952 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncResult-struct"><span class="type">GAsyncResult</span></a> *result</code></em>,
953 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
954954 <div class="refsect3">
955955 <a name="gvir-storage-pool-start-finish.parameters"></a><h4>Parameters</h4>
956956 <div class="informaltable"><table class="informaltable" width="100%" border="0">
972972 </tr>
973973 <tr>
974974 <td class="parameter_name"><p>err</p></td>
975 <td class="parameter_description"><p>return location for any <span class="type">GError</span></p></td>
975 <td class="parameter_description"><p>return location for any <a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a></p></td>
976976 <td class="parameter_annotations"> </td>
977977 </tr>
978978 </tbody>
986986 <hr>
987987 <div class="refsect2">
988988 <a name="gvir-storage-pool-stop"></a><h3>gvir_storage_pool_stop ()</h3>
989 <pre class="programlisting"><span class="returnvalue">gboolean</span>
989 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
990990 gvir_storage_pool_stop (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
991 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
991 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
992992 <div class="refsect3">
993993 <a name="gvir-storage-pool-stop.parameters"></a><h4>Parameters</h4>
994994 <div class="informaltable"><table class="informaltable" width="100%" border="0">
10051005 </tr>
10061006 <tr>
10071007 <td class="parameter_name"><p>err</p></td>
1008 <td class="parameter_description"><p>return location for any <span class="type">GError</span></p></td>
1008 <td class="parameter_description"><p>return location for any <a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a></p></td>
10091009 <td class="parameter_annotations"> </td>
10101010 </tr>
10111011 </tbody>
10211021 <a name="gvir-storage-pool-stop-async"></a><h3>gvir_storage_pool_stop_async ()</h3>
10221022 <pre class="programlisting"><span class="returnvalue">void</span>
10231023 gvir_storage_pool_stop_async (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
1024 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
1025 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
1026 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
1024 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GCancellable.html#GCancellable-struct"><span class="type">GCancellable</span></a> *cancellable</code></em>,
1025 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
1026 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
10271027 <div class="refsect3">
10281028 <a name="gvir-storage-pool-stop-async.parameters"></a><h4>Parameters</h4>
10291029 <div class="informaltable"><table class="informaltable" width="100%" border="0">
10601060 <hr>
10611061 <div class="refsect2">
10621062 <a name="gvir-storage-pool-stop-finish"></a><h3>gvir_storage_pool_stop_finish ()</h3>
1063 <pre class="programlisting"><span class="returnvalue">gboolean</span>
1063 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
10641064 gvir_storage_pool_stop_finish (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
1065 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
1066 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1065 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncResult-struct"><span class="type">GAsyncResult</span></a> *result</code></em>,
1066 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
10671067 <div class="refsect3">
10681068 <a name="gvir-storage-pool-stop-finish.parameters"></a><h4>Parameters</h4>
10691069 <div class="informaltable"><table class="informaltable" width="100%" border="0">
10851085 </tr>
10861086 <tr>
10871087 <td class="parameter_name"><p>err</p></td>
1088 <td class="parameter_description"><p>return location for any <span class="type">GError</span></p></td>
1088 <td class="parameter_description"><p>return location for any <a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a></p></td>
10891089 <td class="parameter_annotations"> </td>
10901090 </tr>
10911091 </tbody>
10991099 <hr>
11001100 <div class="refsect2">
11011101 <a name="gvir-storage-pool-delete"></a><h3>gvir_storage_pool_delete ()</h3>
1102 <pre class="programlisting"><span class="returnvalue">gboolean</span>
1102 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
11031103 gvir_storage_pool_delete (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
1104 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
1105 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1104 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
1105 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
11061106 <div class="refsect3">
11071107 <a name="gvir-storage-pool-delete.parameters"></a><h4>Parameters</h4>
11081108 <div class="informaltable"><table class="informaltable" width="100%" border="0">
11241124 </tr>
11251125 <tr>
11261126 <td class="parameter_name"><p>err</p></td>
1127 <td class="parameter_description"><p>return location for any <span class="type">GError</span></p></td>
1127 <td class="parameter_description"><p>return location for any <a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a></p></td>
11281128 <td class="parameter_annotations"> </td>
11291129 </tr>
11301130 </tbody>
11401140 <a name="gvir-storage-pool-delete-async"></a><h3>gvir_storage_pool_delete_async ()</h3>
11411141 <pre class="programlisting"><span class="returnvalue">void</span>
11421142 gvir_storage_pool_delete_async (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
1143 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
1144 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
1145 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
1146 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
1143 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
1144 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GCancellable.html#GCancellable-struct"><span class="type">GCancellable</span></a> *cancellable</code></em>,
1145 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
1146 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
11471147 <div class="refsect3">
11481148 <a name="gvir-storage-pool-delete-async.parameters"></a><h4>Parameters</h4>
11491149 <div class="informaltable"><table class="informaltable" width="100%" border="0">
11851185 <hr>
11861186 <div class="refsect2">
11871187 <a name="gvir-storage-pool-delete-finish"></a><h3>gvir_storage_pool_delete_finish ()</h3>
1188 <pre class="programlisting"><span class="returnvalue">gboolean</span>
1188 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
11891189 gvir_storage_pool_delete_finish (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
1190 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
1191 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1190 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncResult-struct"><span class="type">GAsyncResult</span></a> *result</code></em>,
1191 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
11921192 <div class="refsect3">
11931193 <a name="gvir-storage-pool-delete-finish.parameters"></a><h4>Parameters</h4>
11941194 <div class="informaltable"><table class="informaltable" width="100%" border="0">
12101210 </tr>
12111211 <tr>
12121212 <td class="parameter_name"><p>err</p></td>
1213 <td class="parameter_description"><p>return location for any <span class="type">GError</span></p></td>
1213 <td class="parameter_description"><p>return location for any <a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a></p></td>
12141214 <td class="parameter_annotations"> </td>
12151215 </tr>
12161216 </tbody>
12241224 <hr>
12251225 <div class="refsect2">
12261226 <a name="gvir-storage-pool-get-autostart"></a><h3>gvir_storage_pool_get_autostart ()</h3>
1227 <pre class="programlisting"><span class="returnvalue">gboolean</span>
1227 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
12281228 gvir_storage_pool_get_autostart (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
1229 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1229 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
12301230 <div class="refsect3">
12311231 <a name="gvir-storage-pool-get-autostart.parameters"></a><h4>Parameters</h4>
12321232 <div class="informaltable"><table class="informaltable" width="100%" border="0">
12431243 </tr>
12441244 <tr>
12451245 <td class="parameter_name"><p>err</p></td>
1246 <td class="parameter_description"><p>return location for any <span class="type">GError</span></p></td>
1246 <td class="parameter_description"><p>return location for any <a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a></p></td>
12471247 <td class="parameter_annotations"> </td>
12481248 </tr>
12491249 </tbody>
12571257 <hr>
12581258 <div class="refsect2">
12591259 <a name="gvir-storage-pool-set-autostart"></a><h3>gvir_storage_pool_set_autostart ()</h3>
1260 <pre class="programlisting"><span class="returnvalue">gboolean</span>
1260 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
12611261 gvir_storage_pool_set_autostart (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
1262 <em class="parameter"><code><span class="type">gboolean</span> autostart</code></em>,
1263 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1262 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> autostart</code></em>,
1263 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
12641264 <p>Sets whether or not storage pool <em class="parameter"><code>pool</code></em>
12651265 is started automatically on boot.</p>
12661266 <div class="refsect3">
12841284 </tr>
12851285 <tr>
12861286 <td class="parameter_name"><p>err</p></td>
1287 <td class="parameter_description"><p>return location for any <span class="type">GError</span></p></td>
1287 <td class="parameter_description"><p>return location for any <a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a></p></td>
12881288 <td class="parameter_annotations"> </td>
12891289 </tr>
12901290 </tbody>
12921292 </div>
12931293 <div class="refsect3">
12941294 <a name="gvir-storage-pool-set-autostart.returns"></a><h4>Returns</h4>
1295 <p> <span class="type">TRUE</span> on success, <span class="type">FALSE</span> otherwise.</p>
1295 <p> <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><span class="type">TRUE</span></a> on success, <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><span class="type">FALSE</span></a> otherwise.</p>
12961296 </div>
12971297 </div>
12981298 </div>
13501350 </div>
13511351 </div>
13521352 <div class="footer">
1353 <hr>Generated by GTK-Doc V1.28</div>
1353 <hr>Generated by GTK-Doc V1.29</div>
13541354 </body>
13551355 </html>
77 <link rel="up" href="ch01.html" title="Libvirt-gobject">
88 <link rel="prev" href="GVirStoragePool.html" title="GVirStoragePool">
99 <link rel="next" href="GVirStream.html" title="GVirStream">
10 <meta name="generator" content="GTK-Doc V1.28 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.29 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
4141 </colgroup>
4242 <tbody>
4343 <tr>
44 <td class="function_type">const <span class="returnvalue">gchar</span> *
44 <td class="function_type">const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
4545 </td>
4646 <td class="function_name">
4747 <a class="link" href="GVirStorageVol.html#gvir-storage-vol-get-name" title="gvir_storage_vol_get_name ()">gvir_storage_vol_get_name</a> <span class="c_punctuation">()</span>
4848 </td>
4949 </tr>
5050 <tr>
51 <td class="function_type">const <span class="returnvalue">gchar</span> *
51 <td class="function_type">const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
5252 </td>
5353 <td class="function_name">
5454 <a class="link" href="GVirStorageVol.html#gvir-storage-vol-get-path" title="gvir_storage_vol_get_path ()">gvir_storage_vol_get_path</a> <span class="c_punctuation">()</span>
5656 </tr>
5757 <tr>
5858 <td class="function_type">
59 <span class="returnvalue">gboolean</span>
59 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
6060 </td>
6161 <td class="function_name">
6262 <a class="link" href="GVirStorageVol.html#gvir-storage-vol-delete" title="gvir_storage_vol_delete ()">gvir_storage_vol_delete</a> <span class="c_punctuation">()</span>
8080 </tr>
8181 <tr>
8282 <td class="function_type">
83 <span class="returnvalue">gboolean</span>
83 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
8484 </td>
8585 <td class="function_name">
8686 <a class="link" href="GVirStorageVol.html#gvir-storage-vol-resize" title="gvir_storage_vol_resize ()">gvir_storage_vol_resize</a> <span class="c_punctuation">()</span>
8888 </tr>
8989 <tr>
9090 <td class="function_type">
91 <span class="returnvalue">gboolean</span>
91 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
9292 </td>
9393 <td class="function_name">
9494 <a class="link" href="GVirStorageVol.html#gvir-storage-vol-download" title="gvir_storage_vol_download ()">gvir_storage_vol_download</a> <span class="c_punctuation">()</span>
9696 </tr>
9797 <tr>
9898 <td class="function_type">
99 <span class="returnvalue">gboolean</span>
99 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
100100 </td>
101101 <td class="function_name">
102102 <a class="link" href="GVirStorageVol.html#gvir-storage-vol-upload" title="gvir_storage_vol_upload ()">gvir_storage_vol_upload</a> <span class="c_punctuation">()</span>
152152 <a name="GVirStorageVol.object-hierarchy"></a><h2>Object Hierarchy</h2>
153153 <pre class="screen"> <a href="/usr/share/gtk-doc/html/gobject/gobject-Boxed-Types.html">GBoxed</a>
154154 <span class="lineart">╰──</span> GVirStorageVolInfo
155 GObject
155 <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a>
156156 <span class="lineart">╰──</span> GVirStorageVol
157157 </pre>
158158 </div>
163163 <a name="GVirStorageVol.functions_details"></a><h2>Functions</h2>
164164 <div class="refsect2">
165165 <a name="gvir-storage-vol-get-name"></a><h3>gvir_storage_vol_get_name ()</h3>
166 <pre class="programlisting">const <span class="returnvalue">gchar</span> *
166 <pre class="programlisting">const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
167167 gvir_storage_vol_get_name (<em class="parameter"><code><a class="link" href="GVirStorageVol.html" title="GVirStorageVol"><span class="type">GVirStorageVol</span></a> *vol</code></em>);</pre>
168168 </div>
169169 <hr>
170170 <div class="refsect2">
171171 <a name="gvir-storage-vol-get-path"></a><h3>gvir_storage_vol_get_path ()</h3>
172 <pre class="programlisting">const <span class="returnvalue">gchar</span> *
172 <pre class="programlisting">const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
173173 gvir_storage_vol_get_path (<em class="parameter"><code><a class="link" href="GVirStorageVol.html" title="GVirStorageVol"><span class="type">GVirStorageVol</span></a> *vol</code></em>,
174 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
174 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
175175 </div>
176176 <hr>
177177 <div class="refsect2">
178178 <a name="gvir-storage-vol-delete"></a><h3>gvir_storage_vol_delete ()</h3>
179 <pre class="programlisting"><span class="returnvalue">gboolean</span>
179 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
180180 gvir_storage_vol_delete (<em class="parameter"><code><a class="link" href="GVirStorageVol.html" title="GVirStorageVol"><span class="type">GVirStorageVol</span></a> *vol</code></em>,
181 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
182 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
181 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
182 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
183183 <p>Deletes the storage volume <em class="parameter"><code>vol</code></em>
184184 .</p>
185185 <div class="refsect3">
211211 </div>
212212 <div class="refsect3">
213213 <a name="gvir-storage-vol-delete.returns"></a><h4>Returns</h4>
214 <p> <code class="literal">TRUE</code> on success, <code class="literal">FALSE</code> otherwise</p>
214 <p> <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> on success, <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise</p>
215215 </div>
216216 </div>
217217 <hr>
219219 <a name="gvir-storage-vol-get-config"></a><h3>gvir_storage_vol_get_config ()</h3>
220220 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigStorageVol.html#GVirConfigStorageVol-struct"><span class="returnvalue">GVirConfigStorageVol</span></a> *
221221 gvir_storage_vol_get_config (<em class="parameter"><code><a class="link" href="GVirStorageVol.html" title="GVirStorageVol"><span class="type">GVirStorageVol</span></a> *vol</code></em>,
222 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
223 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
222 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
223 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
224224 <div class="refsect3">
225225 <a name="gvir-storage-vol-get-config.parameters"></a><h4>Parameters</h4>
226226 <div class="informaltable"><table class="informaltable" width="100%" border="0">
251251 <div class="refsect3">
252252 <a name="gvir-storage-vol-get-config.returns"></a><h4>Returns</h4>
253253 <p>the config. The returned object should be
254 unreffed with <code class="function">g_object_unref()</code> when no longer needed. </p>
254 unreffed with <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer needed. </p>
255255 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
256256 </div>
257257 </div>
260260 <a name="gvir-storage-vol-get-info"></a><h3>gvir_storage_vol_get_info ()</h3>
261261 <pre class="programlisting"><a class="link" href="GVirStorageVol.html#GVirStorageVolInfo"><span class="returnvalue">GVirStorageVolInfo</span></a> *
262262 gvir_storage_vol_get_info (<em class="parameter"><code><a class="link" href="GVirStorageVol.html" title="GVirStorageVol"><span class="type">GVirStorageVol</span></a> *vol</code></em>,
263 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
263 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
264264 <div class="refsect3">
265265 <a name="gvir-storage-vol-get-info.parameters"></a><h4>Parameters</h4>
266266 <div class="informaltable"><table class="informaltable" width="100%" border="0">
286286 <div class="refsect3">
287287 <a name="gvir-storage-vol-get-info.returns"></a><h4>Returns</h4>
288288 <p>the info. The returned object should be
289 unreffed with <code class="function">g_object_unref()</code> when no longer needed. </p>
289 unreffed with <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer needed. </p>
290290 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
291291 </div>
292292 </div>
293293 <hr>
294294 <div class="refsect2">
295295 <a name="gvir-storage-vol-resize"></a><h3>gvir_storage_vol_resize ()</h3>
296 <pre class="programlisting"><span class="returnvalue">gboolean</span>
296 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
297297 gvir_storage_vol_resize (<em class="parameter"><code><a class="link" href="GVirStorageVol.html" title="GVirStorageVol"><span class="type">GVirStorageVol</span></a> *vol</code></em>,
298 <em class="parameter"><code><span class="type">guint64</span> capacity</code></em>,
299 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
300 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
298 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint64"><span class="type">guint64</span></a> capacity</code></em>,
299 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
300 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
301301 <p>Changes the capacity of the storage volume <em class="parameter"><code>vol</code></em>
302302 to <em class="parameter"><code>capacity</code></em>
303303 .</p>
335335 </div>
336336 <div class="refsect3">
337337 <a name="gvir-storage-vol-resize.returns"></a><h4>Returns</h4>
338 <p> <span class="type">TRUE</span> success, <span class="type">FALSE</span> otherwise</p>
338 <p> <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><span class="type">TRUE</span></a> success, <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><span class="type">FALSE</span></a> otherwise</p>
339339 </div>
340340 </div>
341341 <hr>
342342 <div class="refsect2">
343343 <a name="gvir-storage-vol-download"></a><h3>gvir_storage_vol_download ()</h3>
344 <pre class="programlisting"><span class="returnvalue">gboolean</span>
344 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
345345 gvir_storage_vol_download (<em class="parameter"><code><a class="link" href="GVirStorageVol.html" title="GVirStorageVol"><span class="type">GVirStorageVol</span></a> *vol</code></em>,
346346 <em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
347 <em class="parameter"><code><span class="type">guint64</span> offset</code></em>,
348 <em class="parameter"><code><span class="type">guint64</span> length</code></em>,
349 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
350 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
347 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint64"><span class="type">guint64</span></a> offset</code></em>,
348 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint64"><span class="type">guint64</span></a> length</code></em>,
349 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
350 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
351351 <div class="refsect3">
352352 <a name="gvir-storage-vol-download.parameters"></a><h4>Parameters</h4>
353353 <div class="informaltable"><table class="informaltable" width="100%" border="0">
388388 </div>
389389 <div class="refsect3">
390390 <a name="gvir-storage-vol-download.returns"></a><h4>Returns</h4>
391 <p> <span class="type">TRUE</span> of success, <span class="type">FALSE</span> otherwise</p>
391 <p> <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><span class="type">TRUE</span></a> of success, <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><span class="type">FALSE</span></a> otherwise</p>
392392 </div>
393393 </div>
394394 <hr>
395395 <div class="refsect2">
396396 <a name="gvir-storage-vol-upload"></a><h3>gvir_storage_vol_upload ()</h3>
397 <pre class="programlisting"><span class="returnvalue">gboolean</span>
397 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
398398 gvir_storage_vol_upload (<em class="parameter"><code><a class="link" href="GVirStorageVol.html" title="GVirStorageVol"><span class="type">GVirStorageVol</span></a> *vol</code></em>,
399399 <em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
400 <em class="parameter"><code><span class="type">guint64</span> offset</code></em>,
401 <em class="parameter"><code><span class="type">guint64</span> length</code></em>,
402 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
403 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
400 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint64"><span class="type">guint64</span></a> offset</code></em>,
401 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint64"><span class="type">guint64</span></a> length</code></em>,
402 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
403 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
404404 <div class="refsect3">
405405 <a name="gvir-storage-vol-upload.parameters"></a><h4>Parameters</h4>
406406 <div class="informaltable"><table class="informaltable" width="100%" border="0">
441441 </div>
442442 <div class="refsect3">
443443 <a name="gvir-storage-vol-upload.returns"></a><h4>Returns</h4>
444 <p> <span class="type">TRUE</span> of success, <span class="type">FALSE</span> otherwise</p>
444 <p> <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><span class="type">TRUE</span></a> of success, <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><span class="type">FALSE</span></a> otherwise</p>
445445 </div>
446446 </div>
447447 </div>
541541 </div>
542542 </div>
543543 <div class="footer">
544 <hr>Generated by GTK-Doc V1.28</div>
544 <hr>Generated by GTK-Doc V1.29</div>
545545 </body>
546546 </html>
77 <link rel="up" href="ch01.html" title="Libvirt-gobject">
88 <link rel="prev" href="GVirStorageVol.html" title="GVirStorageVol">
99 <link rel="next" href="object-tree.html" title="Object Hierarchy">
10 <meta name="generator" content="GTK-Doc V1.28 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.29 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
4242 <tbody>
4343 <tr>
4444 <td class="function_type">
45 <span class="returnvalue">gint</span>
45 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
4646 </td>
4747 <td class="function_name">
4848 <span class="c_punctuation">(</span><a class="link" href="GVirStream.html#GVirStreamSinkFunc" title="GVirStreamSinkFunc ()">*GVirStreamSinkFunc</a><span class="c_punctuation">)</span> <span class="c_punctuation">()</span>
5050 </tr>
5151 <tr>
5252 <td class="function_type">
53 <span class="returnvalue">gint</span>
53 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
5454 </td>
5555 <td class="function_name">
5656 <span class="c_punctuation">(</span><a class="link" href="GVirStream.html#GVirStreamSourceFunc" title="GVirStreamSourceFunc ()">*GVirStreamSourceFunc</a><span class="c_punctuation">)</span> <span class="c_punctuation">()</span>
5858 </tr>
5959 <tr>
6060 <td class="function_type">
61 <span class="returnvalue">gboolean</span>
61 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
6262 </td>
6363 <td class="function_name">
6464 <span class="c_punctuation">(</span><a class="link" href="GVirStream.html#GVirStreamIOFunc" title="GVirStreamIOFunc ()">*GVirStreamIOFunc</a><span class="c_punctuation">)</span> <span class="c_punctuation">()</span>
6666 </tr>
6767 <tr>
6868 <td class="function_type">
69 <span class="returnvalue">guint</span>
69 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
7070 </td>
7171 <td class="function_name">
7272 <a class="link" href="GVirStream.html#gvir-stream-add-watch" title="gvir_stream_add_watch ()">gvir_stream_add_watch</a> <span class="c_punctuation">()</span>
7474 </tr>
7575 <tr>
7676 <td class="function_type">
77 <span class="returnvalue">guint</span>
77 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
7878 </td>
7979 <td class="function_name">
8080 <a class="link" href="GVirStream.html#gvir-stream-add-watch-full" title="gvir_stream_add_watch_full ()">gvir_stream_add_watch_full</a> <span class="c_punctuation">()</span>
8282 </tr>
8383 <tr>
8484 <td class="function_type">
85 <span class="returnvalue">gssize</span>
85 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gssize"><span class="returnvalue">gssize</span></a>
8686 </td>
8787 <td class="function_name">
8888 <a class="link" href="GVirStream.html#gvir-stream-receive-all" title="gvir_stream_receive_all ()">gvir_stream_receive_all</a> <span class="c_punctuation">()</span>
9090 </tr>
9191 <tr>
9292 <td class="function_type">
93 <span class="returnvalue">gssize</span>
93 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gssize"><span class="returnvalue">gssize</span></a>
9494 </td>
9595 <td class="function_name">
9696 <a class="link" href="GVirStream.html#gvir-stream-receive" title="gvir_stream_receive ()">gvir_stream_receive</a> <span class="c_punctuation">()</span>
9898 </tr>
9999 <tr>
100100 <td class="function_type">
101 <span class="returnvalue">gssize</span>
101 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gssize"><span class="returnvalue">gssize</span></a>
102102 </td>
103103 <td class="function_name">
104104 <a class="link" href="GVirStream.html#gvir-stream-send-all" title="gvir_stream_send_all ()">gvir_stream_send_all</a> <span class="c_punctuation">()</span>
106106 </tr>
107107 <tr>
108108 <td class="function_type">
109 <span class="returnvalue">gssize</span>
109 <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gssize"><span class="returnvalue">gssize</span></a>
110110 </td>
111111 <td class="function_name">
112112 <a class="link" href="GVirStream.html#gvir-stream-send" title="gvir_stream_send ()">gvir_stream_send</a> <span class="c_punctuation">()</span>
146146 </div>
147147 <div class="refsect1">
148148 <a name="GVirStream.object-hierarchy"></a><h2>Object Hierarchy</h2>
149 <pre class="screen"> GObject
150 <span class="lineart">╰──</span> GIOStream
149 <pre class="screen"> <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a>
150 <span class="lineart">╰──</span> <a href="/usr/share/gtk-doc/html/gio/GIOStream.html#GIOStream-struct">GIOStream</a>
151151 <span class="lineart">╰──</span> GVirStream
152152 </pre>
153153 </div>
158158 <a name="GVirStream.functions_details"></a><h2>Functions</h2>
159159 <div class="refsect2">
160160 <a name="GVirStreamSinkFunc"></a><h3>GVirStreamSinkFunc ()</h3>
161 <pre class="programlisting"><span class="returnvalue">gint</span>
161 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
162162 <span class="c_punctuation">(</span>*GVirStreamSinkFunc<span class="c_punctuation">)</span> (<em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
163 <em class="parameter"><code>const <span class="type">gchar</span> *buf</code></em>,
164 <em class="parameter"><code><span class="type">gsize</span> nbytes</code></em>,
165 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
163 <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *buf</code></em>,
164 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gsize"><span class="type">gsize</span></a> nbytes</code></em>,
165 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
166166 <div class="refsect3">
167167 <a name="GVirStreamSinkFunc.parameters"></a><h4>Parameters</h4>
168168 <div class="informaltable"><table class="informaltable" width="100%" border="0">
204204 <hr>
205205 <div class="refsect2">
206206 <a name="GVirStreamSourceFunc"></a><h3>GVirStreamSourceFunc ()</h3>
207 <pre class="programlisting"><span class="returnvalue">gint</span>
207 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
208208 <span class="c_punctuation">(</span>*GVirStreamSourceFunc<span class="c_punctuation">)</span> (<em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
209 <em class="parameter"><code><span class="type">gchar</span> *buf</code></em>,
210 <em class="parameter"><code><span class="type">gsize</span> nbytes</code></em>,
211 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
209 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *buf</code></em>,
210 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gsize"><span class="type">gsize</span></a> nbytes</code></em>,
211 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
212212 <div class="refsect3">
213213 <a name="GVirStreamSourceFunc.parameters"></a><h4>Parameters</h4>
214214 <div class="informaltable"><table class="informaltable" width="100%" border="0">
250250 <hr>
251251 <div class="refsect2">
252252 <a name="GVirStreamIOFunc"></a><h3>GVirStreamIOFunc ()</h3>
253 <pre class="programlisting"><span class="returnvalue">gboolean</span>
253 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
254254 <span class="c_punctuation">(</span>*GVirStreamIOFunc<span class="c_punctuation">)</span> (<em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
255255 <em class="parameter"><code><a class="link" href="GVirStream.html#GVirStreamIOCondition" title="enum GVirStreamIOCondition"><span class="type">GVirStreamIOCondition</span></a> cond</code></em>,
256 <em class="parameter"><code><span class="type">gpointer</span> opaque</code></em>);</pre>
256 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> opaque</code></em>);</pre>
257257 </div>
258258 <hr>
259259 <div class="refsect2">
260260 <a name="gvir-stream-add-watch"></a><h3>gvir_stream_add_watch ()</h3>
261 <pre class="programlisting"><span class="returnvalue">guint</span>
261 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
262262 gvir_stream_add_watch (<em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
263263 <em class="parameter"><code><a class="link" href="GVirStream.html#GVirStreamIOCondition" title="enum GVirStreamIOCondition"><span class="type">GVirStreamIOCondition</span></a> cond</code></em>,
264264 <em class="parameter"><code><a class="link" href="GVirStream.html#GVirStreamIOFunc" title="GVirStreamIOFunc ()"><span class="type">GVirStreamIOFunc</span></a> func</code></em>,
265 <em class="parameter"><code><span class="type">gpointer</span> opaque</code></em>);</pre>
265 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> opaque</code></em>);</pre>
266266 <p>Adds a watch for <em class="parameter"><code>stream</code></em>
267267 to the mainloop</p>
268268 <p><span class="annotation">[<acronym title="Exposed in C code, not necessarily available in other languages."><span class="acronym">skip</span></acronym>]</span></p>
307307 <hr>
308308 <div class="refsect2">
309309 <a name="gvir-stream-add-watch-full"></a><h3>gvir_stream_add_watch_full ()</h3>
310 <pre class="programlisting"><span class="returnvalue">guint</span>
310 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
311311 gvir_stream_add_watch_full (<em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
312 <em class="parameter"><code><span class="type">gint</span> priority</code></em>,
312 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> priority</code></em>,
313313 <em class="parameter"><code><a class="link" href="GVirStream.html#GVirStreamIOCondition" title="enum GVirStreamIOCondition"><span class="type">GVirStreamIOCondition</span></a> cond</code></em>,
314314 <em class="parameter"><code><a class="link" href="GVirStream.html#GVirStreamIOFunc" title="GVirStreamIOFunc ()"><span class="type">GVirStreamIOFunc</span></a> func</code></em>,
315 <em class="parameter"><code><span class="type">gpointer</span> opaque</code></em>,
316 <em class="parameter"><code><span class="type">GDestroyNotify</span> notify</code></em>);</pre>
315 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> opaque</code></em>,
316 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> notify</code></em>);</pre>
317317 <p>Adds a watch for <em class="parameter"><code>stream</code></em>
318318 to the mainloop</p>
319319 <p><span class="annotation">[<acronym title="Rename the original symbol's name to SYMBOL."><span class="acronym">rename-to</span></acronym> gvir_stream_add_watch]</span></p>
368368 <hr>
369369 <div class="refsect2">
370370 <a name="gvir-stream-receive-all"></a><h3>gvir_stream_receive_all ()</h3>
371 <pre class="programlisting"><span class="returnvalue">gssize</span>
371 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gssize"><span class="returnvalue">gssize</span></a>
372372 gvir_stream_receive_all (<em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
373 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
373 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GCancellable.html#GCancellable-struct"><span class="type">GCancellable</span></a> *cancellable</code></em>,
374374 <em class="parameter"><code><a class="link" href="GVirStream.html#GVirStreamSinkFunc" title="GVirStreamSinkFunc ()"><span class="type">GVirStreamSinkFunc</span></a> func</code></em>,
375 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>,
376 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
375 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>,
376 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
377377 <p>Receive the entire data stream, sending the data to the
378378 requested data sink. This is simply a convenient alternative
379379 to virStreamRecv, for apps that do blocking-I/o.</p>
409409 </tr>
410410 <tr>
411411 <td class="parameter_name"><p>error</p></td>
412 <td class="parameter_description"><p><span class="type">GError</span> for error reporting, or <code class="literal">NULL</code> to ignore.</p></td>
412 <td class="parameter_description"><p><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> for error reporting, or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to ignore.</p></td>
413413 <td class="parameter_annotations"> </td>
414414 </tr>
415415 </tbody>
423423 <hr>
424424 <div class="refsect2">
425425 <a name="gvir-stream-receive"></a><h3>gvir_stream_receive ()</h3>
426 <pre class="programlisting"><span class="returnvalue">gssize</span>
426 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gssize"><span class="returnvalue">gssize</span></a>
427427 gvir_stream_receive (<em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
428 <em class="parameter"><code><span class="type">gchar</span> *buffer</code></em>,
429 <em class="parameter"><code><span class="type">gsize</span> size</code></em>,
430 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
431 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
428 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *buffer</code></em>,
429 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gsize"><span class="type">gsize</span></a> size</code></em>,
430 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GCancellable.html#GCancellable-struct"><span class="type">GCancellable</span></a> *cancellable</code></em>,
431 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
432432 <p>Receive data (up to <em class="parameter"><code>size</code></em>
433433 bytes) from a stream.
434434 On error -1 is returned and <em class="parameter"><code>error</code></em>
438438 . If more than <em class="parameter"><code>size</code></em>
439439 bytes have been received, the additional
440440 data will be returned in future calls to <a class="link" href="GVirStream.html#gvir-stream-receive" title="gvir_stream_receive ()"><code class="function">gvir_stream_receive()</code></a>.</p>
441 <p>If there is no data available, a <code class="literal">G_IO_ERROR_WOULD_BLOCK</code> error will be
441 <p>If there is no data available, a <a href="/usr/share/gtk-doc/html/gio/gio-GIOError.html#G-IO-ERROR-WOULD-BLOCK:CAPS"><code class="literal">G_IO_ERROR_WOULD_BLOCK</code></a> error will be
442442 returned.</p>
443443 <div class="refsect3">
444444 <a name="gvir-stream-receive.parameters"></a><h4>Parameters</h4>
468468 </tr>
469469 <tr>
470470 <td class="parameter_name"><p>cancellable</p></td>
471 <td class="parameter_description"><p>a <code class="literal">GCancellable</code> or <code class="literal">NULL</code>. </p></td>
471 <td class="parameter_description"><p>a <a href="/usr/share/gtk-doc/html/gio/GCancellable.html#GCancellable-struct"><code class="literal">GCancellable</code></a> or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
472472 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
473473 </tr>
474474 <tr>
475475 <td class="parameter_name"><p>error</p></td>
476 <td class="parameter_description"><p><span class="type">GError</span> for error reporting, or <code class="literal">NULL</code> to ignore.</p></td>
476 <td class="parameter_description"><p><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> for error reporting, or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to ignore.</p></td>
477477 <td class="parameter_annotations"> </td>
478478 </tr>
479479 </tbody>
488488 <hr>
489489 <div class="refsect2">
490490 <a name="gvir-stream-send-all"></a><h3>gvir_stream_send_all ()</h3>
491 <pre class="programlisting"><span class="returnvalue">gssize</span>
491 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gssize"><span class="returnvalue">gssize</span></a>
492492 gvir_stream_send_all (<em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
493 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
493 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GCancellable.html#GCancellable-struct"><span class="type">GCancellable</span></a> *cancellable</code></em>,
494494 <em class="parameter"><code><a class="link" href="GVirStream.html#GVirStreamSourceFunc" title="GVirStreamSourceFunc ()"><span class="type">GVirStreamSourceFunc</span></a> func</code></em>,
495 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>,
496 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
495 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>,
496 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
497497 <p>Send the entire data stream, sending the data to the
498498 requested data source. This is simply a convenient alternative
499499 to virStreamRecv, for apps that do blocking-I/o.</p>
529529 </tr>
530530 <tr>
531531 <td class="parameter_name"><p>error</p></td>
532 <td class="parameter_description"><p><span class="type">GError</span> for error reporting, or <code class="literal">NULL</code> to ignore.</p></td>
532 <td class="parameter_description"><p><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> for error reporting, or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to ignore.</p></td>
533533 <td class="parameter_annotations"> </td>
534534 </tr>
535535 </tbody>
543543 <hr>
544544 <div class="refsect2">
545545 <a name="gvir-stream-send"></a><h3>gvir_stream_send ()</h3>
546 <pre class="programlisting"><span class="returnvalue">gssize</span>
546 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gssize"><span class="returnvalue">gssize</span></a>
547547 gvir_stream_send (<em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
548 <em class="parameter"><code>const <span class="type">gchar</span> *buffer</code></em>,
549 <em class="parameter"><code><span class="type">gsize</span> size</code></em>,
550 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
551 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
548 <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *buffer</code></em>,
549 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gsize"><span class="type">gsize</span></a> size</code></em>,
550 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gio/GCancellable.html#GCancellable-struct"><span class="type">GCancellable</span></a> *cancellable</code></em>,
551 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
552552 <p>Send data (up to <em class="parameter"><code>size</code></em>
553553 bytes) from a stream.
554554 On error -1 is returned and <em class="parameter"><code>error</code></em>
558558 . If more than <em class="parameter"><code>size</code></em>
559559 bytes have been sendd, the additional
560560 data will be returned in future calls to <a class="link" href="GVirStream.html#gvir-stream-send" title="gvir_stream_send ()"><code class="function">gvir_stream_send()</code></a>.</p>
561 <p>If there is no data available, a <code class="literal">G_IO_ERROR_WOULD_BLOCK</code> error will be
561 <p>If there is no data available, a <a href="/usr/share/gtk-doc/html/gio/gio-GIOError.html#G-IO-ERROR-WOULD-BLOCK:CAPS"><code class="literal">G_IO_ERROR_WOULD_BLOCK</code></a> error will be
562562 returned.</p>
563563 <div class="refsect3">
564564 <a name="gvir-stream-send.parameters"></a><h4>Parameters</h4>
587587 </tr>
588588 <tr>
589589 <td class="parameter_name"><p>cancellable</p></td>
590 <td class="parameter_description"><p>a <code class="literal">GCancellable</code> or <code class="literal">NULL</code>. </p></td>
590 <td class="parameter_description"><p>a <a href="/usr/share/gtk-doc/html/gio/GCancellable.html#GCancellable-struct"><code class="literal">GCancellable</code></a> or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
591591 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
592592 </tr>
593593 <tr>
594594 <td class="parameter_name"><p>error</p></td>
595 <td class="parameter_description"><p><span class="type">GError</span> for error reporting, or <code class="literal">NULL</code> to ignore.</p></td>
595 <td class="parameter_description"><p><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> for error reporting, or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to ignore.</p></td>
596596 <td class="parameter_annotations"> </td>
597597 </tr>
598598 </tbody>
653653 </div>
654654 </div>
655655 <div class="footer">
656 <hr>Generated by GTK-Doc V1.28</div>
656 <hr>Generated by GTK-Doc V1.29</div>
657657 </body>
658658 </html>
7575 <keyword type="function" name="gvir_connection_restore_domain_from_file ()" link="GVirConnection.html#gvir-connection-restore-domain-from-file"/>
7676 <keyword type="function" name="gvir_connection_restore_domain_from_file_async ()" link="GVirConnection.html#gvir-connection-restore-domain-from-file-async"/>
7777 <keyword type="function" name="gvir_connection_restore_domain_from_file_finish ()" link="GVirConnection.html#gvir-connection-restore-domain-from-file-finish"/>
78 <keyword type="function" name="gvir_connection_get_domain_capabilities ()" link="GVirConnection.html#gvir-connection-get-domain-capabilities"/>
79 <keyword type="function" name="gvir_connection_get_domain_capabilities_async ()" link="GVirConnection.html#gvir-connection-get-domain-capabilities-async"/>
80 <keyword type="function" name="gvir_connection_get_domain_capabilities_finish ()" link="GVirConnection.html#gvir-connection-get-domain-capabilities-finish"/>
7881 <keyword type="property" name="The “handle” property" link="GVirConnection.html#GVirConnection--handle"/>
7982 <keyword type="property" name="The “uri” property" link="GVirConnection.html#GVirConnection--uri"/>
8083 <keyword type="signal" name="The “connection-closed” signal" link="GVirConnection.html#GVirConnection-connection-closed"/>
66 <link rel="home" href="index.html" title="Libvirt-gobject Reference Manual">
77 <link rel="up" href="index.html" title="Libvirt-gobject Reference Manual">
88 <link rel="prev" href="api-index-full.html" title="API Index">
9 <meta name="generator" content="GTK-Doc V1.28 (XML mode)">
9 <meta name="generator" content="GTK-Doc V1.29 (XML mode)">
1010 <link rel="stylesheet" href="style.css" type="text/css">
1111 </head>
1212 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
7070 <dd class="glossdef"><p>Override the parsed C type with given type.</p></dd>
7171 </div>
7272 <div class="footer">
73 <hr>Generated by GTK-Doc V1.28</div>
73 <hr>Generated by GTK-Doc V1.29</div>
7474 </body>
7575 </html>
77 <link rel="up" href="index.html" title="Libvirt-gobject Reference Manual">
88 <link rel="prev" href="object-tree.html" title="Object Hierarchy">
99 <link rel="next" href="annotation-glossary.html" title="Annotation Glossary">
10 <meta name="generator" content="GTK-Doc V1.28 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.29 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
2525 <a name="api-index-full"></a>API Index</h1></div></div></div>
2626 <a name="idx"></a><a name="idxM"></a><h3 class="title">M</h3>
2727 <dt>
28 g_mutex_free, macro in libvirt-gobject-compat
29 </dt>
30 <dd></dd>
31 <dt>
32 g_mutex_new, macro in libvirt-gobject-compat
28 <a href="/usr/share/gtk-doc/html/glib/glib-Deprecated-Thread-APIs.html#g-mutex-free">g_mutex_free</a>, macro in libvirt-gobject-compat
29 </dt>
30 <dd></dd>
31 <dt>
32 <a href="/usr/share/gtk-doc/html/glib/glib-Deprecated-Thread-APIs.html#g-mutex-new">g_mutex_new</a>, macro in libvirt-gobject-compat
3333 </dt>
3434 <dd></dd>
3535 <a name="idxV"></a><h3 class="title">V</h3>
327327 <dd></dd>
328328 <dt>
329329 <a class="link" href="GVirConnection.html#gvir-connection-get-domains" title="gvir_connection_get_domains ()">gvir_connection_get_domains</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
330 </dt>
331 <dd></dd>
332 <dt>
333 <a class="link" href="GVirConnection.html#gvir-connection-get-domain-capabilities" title="gvir_connection_get_domain_capabilities ()">gvir_connection_get_domain_capabilities</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
334 </dt>
335 <dd></dd>
336 <dt>
337 <a class="link" href="GVirConnection.html#gvir-connection-get-domain-capabilities-async" title="gvir_connection_get_domain_capabilities_async ()">gvir_connection_get_domain_capabilities_async</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
338 </dt>
339 <dd></dd>
340 <dt>
341 <a class="link" href="GVirConnection.html#gvir-connection-get-domain-capabilities-finish" title="gvir_connection_get_domain_capabilities_finish ()">gvir_connection_get_domain_capabilities_finish</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
330342 </dt>
331343 <dd></dd>
332344 <dt>
10111023 <dd></dd>
10121024 </div>
10131025 <div class="footer">
1014 <hr>Generated by GTK-Doc V1.28</div>
1026 <hr>Generated by GTK-Doc V1.29</div>
10151027 </body>
10161028 </html>
77 <link rel="up" href="index.html" title="Libvirt-gobject Reference Manual">
88 <link rel="prev" href="index.html" title="Libvirt-gobject Reference Manual">
99 <link rel="next" href="GVirConnection.html" title="GVirConnection">
10 <meta name="generator" content="GTK-Doc V1.28 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.29 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
6161 </dl></div>
6262 </div>
6363 <div class="footer">
64 <hr>Generated by GTK-Doc V1.28</div>
64 <hr>Generated by GTK-Doc V1.29</div>
6565 </body>
6666 </html>
55 <meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
66 <link rel="home" href="index.html" title="Libvirt-gobject Reference Manual">
77 <link rel="next" href="ch01.html" title="Libvirt-gobject">
8 <meta name="generator" content="GTK-Doc V1.28 (XML mode)">
8 <meta name="generator" content="GTK-Doc V1.29 (XML mode)">
99 <link rel="stylesheet" href="style.css" type="text/css">
1010 </head>
1111 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
6060 </dl></div>
6161 </div>
6262 <div class="footer">
63 <hr>Generated by GTK-Doc V1.28</div>
63 <hr>Generated by GTK-Doc V1.29</div>
6464 </body>
6565 </html>
77 <link rel="up" href="index.html" title="Libvirt-gobject Reference Manual">
88 <link rel="prev" href="GVirStream.html" title="GVirStream">
99 <link rel="next" href="api-index-full.html" title="API Index">
10 <meta name="generator" content="GTK-Doc V1.28 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.29 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
2222 <div class="titlepage"><div><div><h1 class="title">
2323 <a name="object-tree"></a>Object Hierarchy</h1></div></div></div>
2424 <pre class="screen">
25 GObject
25 <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a>
2626 <span class="lineart">├──</span> <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
2727 <span class="lineart">├──</span> GVirDomainDevice
2828 <span class="lineart">│</span> <span class="lineart">├──</span> GVirDomainDisk
3838 <span class="lineart">├──</span> <a class="link" href="GVirSecret.html" title="GVirSecret">GVirSecret</a>
3939 <span class="lineart">├──</span> <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
4040 <span class="lineart">├──</span> <a class="link" href="GVirStorageVol.html" title="GVirStorageVol">GVirStorageVol</a>
41 <span class="lineart">╰──</span> GIOStream
41 <span class="lineart">╰──</span> <a href="/usr/share/gtk-doc/html/gio/GIOStream.html#GIOStream-struct">GIOStream</a>
4242 <span class="lineart">╰──</span> <a class="link" href="GVirStream.html" title="GVirStream">GVirStream</a>
4343 <a href="/usr/share/gtk-doc/html/gobject/gobject-Boxed-Types.html">GBoxed</a>
4444 <span class="lineart">├──</span> GVirDomainDiskStats
5050 </pre>
5151 </div>
5252 <div class="footer">
53 <hr>Generated by GTK-Doc V1.28</div>
53 <hr>Generated by GTK-Doc V1.29</div>
5454 </body>
5555 </html>
0 # Makefile.in generated by automake 1.15.1 from Makefile.am.
0 # Makefile.in generated by automake 1.16.1 from Makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
9191 subdir = examples
9292 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
9393 am__aclocal_m4_deps = $(top_srcdir)/m4/glibtests.m4 \
94 $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
95 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
96 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
97 $(top_srcdir)/m4/manywarnings.m4 \
94 $(top_srcdir)/m4/gtk-doc.m4 $(top_srcdir)/m4/introspection.m4 \
95 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
96 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
97 $(top_srcdir)/m4/lt~obsolete.m4 \
98 $(top_srcdir)/m4/manywarnings.m4 $(top_srcdir)/m4/pkg.m4 \
9899 $(top_srcdir)/m4/virt-compile-warnings.m4 \
99 $(top_srcdir)/m4/virt-gettext.m4 $(top_srcdir)/m4/warnings.m4 \
100 $(top_srcdir)/m4/virt-nls.m4 $(top_srcdir)/m4/warnings.m4 \
100101 $(top_srcdir)/configure.ac
101102 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
102103 $(ACLOCAL_M4)
141142 am__v_at_1 =
142143 DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
143144 depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp
144 am__depfiles_maybe = depfiles
145 am__maybe_remake_depfiles = depfiles
146 am__depfiles_remade = ./$(DEPDIR)/conn_test-conn-test.Po \
147 ./$(DEPDIR)/event_test-event-test.Po
145148 am__mv = mv -f
146149 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
147150 $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
191194 $(top_srcdir)/build-aux/depcomp
192195 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
193196 ACLOCAL = @ACLOCAL@
194 ALL_LINGUAS = @ALL_LINGUAS@
195197 AMTAR = @AMTAR@
196198 AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
197199 AR = @AR@
222224 EGREP = @EGREP@
223225 EXEEXT = @EXEEXT@
224226 FGREP = @FGREP@
225 GETTEXT_PACKAGE = @GETTEXT_PACKAGE@
226227 GIO2_CFLAGS = @GIO2_CFLAGS@
227228 GIO2_LIBS = @GIO2_LIBS@
228229 GLIB2_CFLAGS = @GLIB2_CFLAGS@
229230 GLIB2_LIBS = @GLIB2_LIBS@
230231 GLIB2_REQUIRED = @GLIB2_REQUIRED@
232 GLIB2_VERSION_SYMBOL = @GLIB2_VERSION_SYMBOL@
231233 GLIB_MKENUMS = @GLIB_MKENUMS@
232 GMSGFMT = @GMSGFMT@
233234 GOBJECT2_CFLAGS = @GOBJECT2_CFLAGS@
234235 GOBJECT2_LIBS = @GOBJECT2_LIBS@
235236 GREP = @GREP@
247248 INSTALL_PROGRAM = @INSTALL_PROGRAM@
248249 INSTALL_SCRIPT = @INSTALL_SCRIPT@
249250 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
250 INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
251 INTLTOOL_MERGE = @INTLTOOL_MERGE@
252 INTLTOOL_PERL = @INTLTOOL_PERL@
253 INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
254 INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@
255 INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@
256 INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@
257 INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@
258251 INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@
259252 INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@
260253 INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@
312305 SET_MAKE = @SET_MAKE@
313306 SHELL = @SHELL@
314307 STRIP = @STRIP@
315 USE_NLS = @USE_NLS@
316308 VAPIGEN = @VAPIGEN@
317309 VERSION = @VERSION@
318310 WARN_CFLAGS = @WARN_CFLAGS@
352344 install_sh = @install_sh@
353345 installed_test_metadir = @installed_test_metadir@
354346 installed_testdir = @installed_testdir@
355 intltool__v_merge_options_ = @intltool__v_merge_options_@
356 intltool__v_merge_options_0 = @intltool__v_merge_options_0@
357347 libdir = @libdir@
358348 libexecdir = @libexecdir@
359349 localedir = @localedir@
427417 *config.status*) \
428418 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
429419 *) \
430 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
431 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
420 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
421 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
432422 esac;
433423
434424 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
463453 distclean-compile:
464454 -rm -f *.tab.c
465455
466 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/conn_test-conn-test.Po@am__quote@
467 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/event_test-event-test.Po@am__quote@
456 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/conn_test-conn-test.Po@am__quote@ # am--include-marker
457 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/event_test-event-test.Po@am__quote@ # am--include-marker
458
459 $(am__depfiles_remade):
460 @$(MKDIR_P) $(@D)
461 @echo '# dummy' >$@-t && $(am__mv) $@-t $@
462
463 am--depfiles: $(am__depfiles_remade)
468464
469465 .c.o:
470466 @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
573569 distclean-tags:
574570 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
575571
576 distdir: $(DISTFILES)
572 distdir: $(BUILT_SOURCES)
573 $(MAKE) $(AM_MAKEFLAGS) distdir-am
574
575 distdir-am: $(DISTFILES)
577576 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
578577 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
579578 list='$(DISTFILES)'; \
643642 mostlyclean-am
644643
645644 distclean: distclean-am
646 -rm -rf ./$(DEPDIR)
645 -rm -f ./$(DEPDIR)/conn_test-conn-test.Po
646 -rm -f ./$(DEPDIR)/event_test-event-test.Po
647647 -rm -f Makefile
648648 distclean-am: clean-am distclean-compile distclean-generic \
649649 distclean-tags
689689 installcheck-am:
690690
691691 maintainer-clean: maintainer-clean-am
692 -rm -rf ./$(DEPDIR)
692 -rm -f ./$(DEPDIR)/conn_test-conn-test.Po
693 -rm -f ./$(DEPDIR)/event_test-event-test.Po
693694 -rm -f Makefile
694695 maintainer-clean-am: distclean-am maintainer-clean-generic
695696
710711
711712 .MAKE: install-am install-strip
712713
713 .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
714 clean-libtool clean-noinstPROGRAMS cscopelist-am ctags \
715 ctags-am distclean distclean-compile distclean-generic \
714 .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
715 clean-generic clean-libtool clean-noinstPROGRAMS cscopelist-am \
716 ctags ctags-am distclean distclean-compile distclean-generic \
716717 distclean-libtool distclean-tags distdir dvi dvi-am html \
717718 html-am info info-am install install-am install-data \
718719 install-data-am install-dvi install-dvi-am install-exec \
0 #!/usr/bin/env python2
0 #!/usr/bin/env python3
11
2 from gi.repository import LibvirtGConfig;
2 import gi
3
4 gi.require_version('LibvirtGConfig', '1.0')
5 from gi.repository import LibvirtGConfig
36
47 domain = LibvirtGConfig.Domain.new()
58 domain.set_virt_type(LibvirtGConfig.DomainVirtType.KVM)
7073 console.set_source(pty)
7174 domain.add_device(console)
7275
73 print domain.to_xml()
76 print(domain.to_xml())
7477
7578
7679 pool = LibvirtGConfig.StoragePool.new()
8386 perms = LibvirtGConfig.StoragePermissions.new()
8487 perms.set_owner(1001)
8588 perms.set_group(1005)
86 perms.set_mode(0744)
89 perms.set_mode(0o744)
8790 perms.set_label("virt_image_t")
8891
8992 pool_target = LibvirtGConfig.StoragePoolTarget.new()
9194 pool_target.set_permissions(perms)
9295 pool.set_target(pool_target)
9396
94 print pool.to_xml()
97 print(pool.to_xml())
9598
9699
97100 vol = LibvirtGConfig.StorageVol.new()
103106 vol_target.set_permissions(perms)
104107 vol.set_target(vol_target)
105108
106 print vol.to_xml()
109 print(vol.to_xml())
0 #!/usr/bin/env python2
0 #!/usr/bin/env python3
11
2 import gi
3
4 gi.require_version('Gtk', '3.0')
25 from gi.repository import Gtk
36 import libvirt
47 import getopt
58 import sys
69
7 from gi.repository import LibvirtGLib;
10 gi.require_version('LibvirtGLib', '1.0')
11 from gi.repository import LibvirtGLib
812
913 def eventToString(event):
1014 eventStrings = ( "Added",
1418 "Resumed",
1519 "Stopped",
1620 "Saved",
17 "Restored" );
18 return eventStrings[event];
21 "Restored" )
22 return eventStrings[event]
1923
2024 def myDomainEventCallback1 (conn, dom, event, detail, opaque):
21 print "myDomainEventCallback1 EVENT: Domain %s(%s) %s" % (dom.name(), dom.ID(), eventToString(event))
25 print("myDomainEventCallback1 EVENT: Domain %s(%s) %s" % (dom.name(), dom.ID(), eventToString(event)))
2226
2327 def myDomainEventCallback2 (conn, dom, event, detail, opaque):
24 print "myDomainEventCallback2 EVENT: Domain %s(%s) %s" % (dom.name(), dom.ID(), eventToString(event))
28 print("myDomainEventCallback2 EVENT: Domain %s(%s) %s" % (dom.name(), dom.ID(), eventToString(event)))
2529
2630 def usage():
27 print "usage: "+os.path.basename(sys.argv[0])+" [uri]"
28 print " uri will default to qemu:///system"
31 print("usage: "+os.path.basename(sys.argv[0])+" [uri]")
32 print(" uri will default to qemu:///system")
2933
3034 def main():
3135 try:
3236 opts, args = getopt.getopt(sys.argv[1:], "h", ["help"] )
33 except getopt.GetoptError, err:
37 except getopt.GetoptError as err:
3438 # print help information and exit:
35 print str(err) # will print something like "option -a not recognized"
39 print(str(err)) # will print something like "option -a not recognized"
3640 usage()
3741 sys.exit(2)
3842 for o, a in opts:
4549 else:
4650 uri = "qemu:///system"
4751
48 print "Using uri:" + uri
52 print("Using uri:" + uri)
4953
50 LibvirtGLib.init(0, "")
54 LibvirtGLib.init()
5155 LibvirtGLib.event_register()
5256 vc = libvirt.open(uri)
5357
00 # -*- mode: makefile -*-
1 #
2 # gtk-doc.make - make rules for gtk-doc
3 # Copyright (C) 2003 James Henstridge
4 # 2004-2007 Damon Chaplin
5 # 2007-2017 Stefan Sauer
6 #
7 # This program is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
119
220 ####################################
321 # Everything below here is generic #
2442
2543 SETUP_FILES = \
2644 $(content_files) \
45 $(expand_content_files) \
2746 $(DOC_MAIN_SGML_FILE) \
2847 $(DOC_MODULE)-sections.txt \
2948 $(DOC_MODULE)-overrides.txt
4867 $(DOC_MODULE)-undeclared.txt \
4968 $(DOC_MODULE)-unused.txt
5069
51 CLEANFILES = $(SCANOBJ_FILES) $(REPORT_FILES) $(DOC_STAMPS)
52
53 if ENABLE_GTK_DOC
70 gtkdoc-check.test: Makefile
71 $(AM_V_GEN)echo "#!/bin/sh -e" > $@; \
72 echo "$(GTKDOC_CHECK_PATH) || exit 1" >> $@; \
73 chmod +x $@
74
75 CLEANFILES = $(SCANOBJ_FILES) $(REPORT_FILES) $(DOC_STAMPS) gtkdoc-check.test
76
5477 if GTK_DOC_BUILD_HTML
5578 HTML_BUILD_STAMP=html-build.stamp
5679 else
6285 PDF_BUILD_STAMP=
6386 endif
6487
65 all-local: $(HTML_BUILD_STAMP) $(PDF_BUILD_STAMP)
66 else
67 all-local:
88 all-gtk-doc: $(HTML_BUILD_STAMP) $(PDF_BUILD_STAMP)
89 .PHONY: all-gtk-doc
90
91 if ENABLE_GTK_DOC
92 all-local: all-gtk-doc
6893 endif
6994
7095 docs: $(HTML_BUILD_STAMP) $(PDF_BUILD_STAMP)
7398
7499 #### setup ####
75100
101 GTK_DOC_V_SETUP=$(GTK_DOC_V_SETUP_@AM_V@)
102 GTK_DOC_V_SETUP_=$(GTK_DOC_V_SETUP_@AM_DEFAULT_V@)
103 GTK_DOC_V_SETUP_0=@echo " DOC Preparing build";
104
76105 setup-build.stamp:
77 -@if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \
78 echo ' DOC Preparing build'; \
79 files=`echo $(SETUP_FILES) $(expand_content_files) $(DOC_MODULE).types`; \
80 if test "x$$files" != "x" ; then \
81 for file in $$files ; do \
82 test -f $(abs_srcdir)/$$file && \
83 cp -pu $(abs_srcdir)/$$file $(abs_builddir)/ || true; \
84 done; \
85 fi; \
86 fi
87 @touch setup-build.stamp
88
106 -$(GTK_DOC_V_SETUP)if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \
107 files=`echo $(SETUP_FILES) $(DOC_MODULE).types`; \
108 if test "x$$files" != "x" ; then \
109 for file in $$files ; do \
110 destdir=`dirname $(abs_builddir)/$$file`; \
111 test -d "$$destdir" || mkdir -p "$$destdir"; \
112 test -f $(abs_srcdir)/$$file && \
113 cp -pf $(abs_srcdir)/$$file $(abs_builddir)/$$file || true; \
114 done; \
115 fi; \
116 fi
117 $(AM_V_at)touch setup-build.stamp
89118
90119 #### scan ####
91120
92 scan-build.stamp: $(HFILE_GLOB) $(CFILE_GLOB)
93 @echo ' DOC Scanning header files'
94 @_source_dir='' ; \
121 GTK_DOC_V_SCAN=$(GTK_DOC_V_SCAN_@AM_V@)
122 GTK_DOC_V_SCAN_=$(GTK_DOC_V_SCAN_@AM_DEFAULT_V@)
123 GTK_DOC_V_SCAN_0=@echo " DOC Scanning header files";
124
125 GTK_DOC_V_INTROSPECT=$(GTK_DOC_V_INTROSPECT_@AM_V@)
126 GTK_DOC_V_INTROSPECT_=$(GTK_DOC_V_INTROSPECT_@AM_DEFAULT_V@)
127 GTK_DOC_V_INTROSPECT_0=@echo " DOC Introspecting gobjects";
128
129 scan-build.stamp: setup-build.stamp $(HFILE_GLOB) $(CFILE_GLOB)
130 $(GTK_DOC_V_SCAN)_source_dir='' ; \
95131 for i in $(DOC_SOURCE_DIR) ; do \
96 _source_dir="$${_source_dir} --source-dir=$$i" ; \
132 _source_dir="$${_source_dir} --source-dir=$$i" ; \
97133 done ; \
98134 gtkdoc-scan --module=$(DOC_MODULE) --ignore-headers="$(IGNORE_HFILES)" $${_source_dir} $(SCAN_OPTIONS) $(EXTRA_HFILES)
99 @if grep -l '^..*$$' $(DOC_MODULE).types > /dev/null 2>&1 ; then \
100 echo " DOC Introspecting gobjects"; \
101 scanobj_options=""; \
102 gtkdoc-scangobj 2>&1 --help | grep >/dev/null "\-\-verbose"; \
103 if test "$(?)" = "0"; then \
104 if test "x$(V)" = "x1"; then \
105 scanobj_options="--verbose"; \
106 fi; \
135 $(GTK_DOC_V_INTROSPECT)if grep -l '^..*$$' $(DOC_MODULE).types > /dev/null 2>&1 ; then \
136 scanobj_options=""; \
137 gtkdoc-scangobj 2>&1 --help | grep >/dev/null "\-\-verbose"; \
138 if test "$$?" = "0"; then \
139 if test "x$(V)" = "x1"; then \
140 scanobj_options="--verbose"; \
107141 fi; \
108 CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" RUN="$(GTKDOC_RUN)" CFLAGS="$(GTKDOC_CFLAGS) $(CFLAGS)" LDFLAGS="$(GTKDOC_LIBS) $(LDFLAGS)" \
109 gtkdoc-scangobj $(SCANGOBJ_OPTIONS) $$scanobj_options --module=$(DOC_MODULE); \
142 fi; \
143 CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" RUN="$(GTKDOC_RUN)" CFLAGS="$(GTKDOC_CFLAGS) $(CFLAGS)" LDFLAGS="$(GTKDOC_LIBS) $(LDFLAGS)" \
144 gtkdoc-scangobj $(SCANGOBJ_OPTIONS) $$scanobj_options --module=$(DOC_MODULE); \
110145 else \
111 for i in $(SCANOBJ_FILES) ; do \
112 test -f $$i || touch $$i ; \
113 done \
114 fi
115 @touch scan-build.stamp
146 for i in $(SCANOBJ_FILES) ; do \
147 test -f $$i || touch $$i ; \
148 done \
149 fi
150 $(AM_V_at)touch scan-build.stamp
116151
117152 $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt: scan-build.stamp
118153 @true
119154
120155 #### xml ####
121156
122 sgml-build.stamp: setup-build.stamp $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt $(expand_content_files)
123 @echo ' DOC Building XML'
124 @_source_dir='' ; \
157 GTK_DOC_V_XML=$(GTK_DOC_V_XML_@AM_V@)
158 GTK_DOC_V_XML_=$(GTK_DOC_V_XML_@AM_DEFAULT_V@)
159 GTK_DOC_V_XML_0=@echo " DOC Building XML";
160
161 sgml-build.stamp: setup-build.stamp $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(HFILE_GLOB) $(CFILE_GLOB) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt $(expand_content_files) xml/gtkdocentities.ent
162 $(GTK_DOC_V_XML)_source_dir='' ; \
125163 for i in $(DOC_SOURCE_DIR) ; do \
126 _source_dir="$${_source_dir} --source-dir=$$i" ; \
164 _source_dir="$${_source_dir} --source-dir=$$i" ; \
127165 done ; \
128166 gtkdoc-mkdb --module=$(DOC_MODULE) --output-format=xml --expand-content-files="$(expand_content_files)" --main-sgml-file=$(DOC_MAIN_SGML_FILE) $${_source_dir} $(MKDB_OPTIONS)
129 @touch sgml-build.stamp
167 $(AM_V_at)touch sgml-build.stamp
130168
131169 sgml.stamp: sgml-build.stamp
132170 @true
133171
172 $(DOC_MAIN_SGML_FILE): sgml-build.stamp
173 @true
174
175 xml/gtkdocentities.ent: Makefile
176 $(GTK_DOC_V_XML)$(MKDIR_P) $(@D) && ( \
177 echo "<!ENTITY package \"$(PACKAGE)\">"; \
178 echo "<!ENTITY package_bugreport \"$(PACKAGE_BUGREPORT)\">"; \
179 echo "<!ENTITY package_name \"$(PACKAGE_NAME)\">"; \
180 echo "<!ENTITY package_string \"$(PACKAGE_STRING)\">"; \
181 echo "<!ENTITY package_tarname \"$(PACKAGE_TARNAME)\">"; \
182 echo "<!ENTITY package_url \"$(PACKAGE_URL)\">"; \
183 echo "<!ENTITY package_version \"$(PACKAGE_VERSION)\">"; \
184 ) > $@
185
134186 #### html ####
135187
136 html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files)
137 @echo ' DOC Building HTML'
138 @rm -rf html
139 @mkdir html
140 @mkhtml_options=""; \
188 GTK_DOC_V_HTML=$(GTK_DOC_V_HTML_@AM_V@)
189 GTK_DOC_V_HTML_=$(GTK_DOC_V_HTML_@AM_DEFAULT_V@)
190 GTK_DOC_V_HTML_0=@echo " DOC Building HTML";
191
192 GTK_DOC_V_XREF=$(GTK_DOC_V_XREF_@AM_V@)
193 GTK_DOC_V_XREF_=$(GTK_DOC_V_XREF_@AM_DEFAULT_V@)
194 GTK_DOC_V_XREF_0=@echo " DOC Fixing cross-references";
195
196 html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) $(expand_content_files)
197 $(GTK_DOC_V_HTML)rm -rf html && mkdir html && \
198 mkhtml_options=""; \
141199 gtkdoc-mkhtml 2>&1 --help | grep >/dev/null "\-\-verbose"; \
142 if test "$(?)" = "0"; then \
200 if test "$$?" = "0"; then \
143201 if test "x$(V)" = "x1"; then \
144202 mkhtml_options="$$mkhtml_options --verbose"; \
145203 fi; \
146204 fi; \
147205 gtkdoc-mkhtml 2>&1 --help | grep >/dev/null "\-\-path"; \
148 if test "$(?)" = "0"; then \
206 if test "$$?" = "0"; then \
149207 mkhtml_options="$$mkhtml_options --path=\"$(abs_srcdir)\""; \
150208 fi; \
151209 cd html && gtkdoc-mkhtml $$mkhtml_options $(MKHTML_OPTIONS) $(DOC_MODULE) ../$(DOC_MAIN_SGML_FILE)
152210 -@test "x$(HTML_IMAGES)" = "x" || \
153211 for file in $(HTML_IMAGES) ; do \
154 if test -f $(abs_srcdir)/$$file ; then \
155 cp $(abs_srcdir)/$$file $(abs_builddir)/html; \
156 fi; \
157 if test -f $(abs_builddir)/$$file ; then \
158 cp $(abs_builddir)/$$file $(abs_builddir)/html; \
159 fi; \
212 test -f $(abs_srcdir)/$$file && cp $(abs_srcdir)/$$file $(abs_builddir)/html; \
213 test -f $(abs_builddir)/$$file && cp $(abs_builddir)/$$file $(abs_builddir)/html; \
214 test -f $$file && cp $$file $(abs_builddir)/html; \
160215 done;
161 @echo ' DOC Fixing cross-references'
162 @gtkdoc-fixxref --module=$(DOC_MODULE) --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS)
163 @touch html-build.stamp
216 $(GTK_DOC_V_XREF)gtkdoc-fixxref --module=$(DOC_MODULE) --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS)
217 $(AM_V_at)touch html-build.stamp
164218
165219 #### pdf ####
166220
167 pdf-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files)
168 @echo ' DOC Building PDF'
169 @rm -f $(DOC_MODULE).pdf
170 @mkpdf_options=""; \
221 GTK_DOC_V_PDF=$(GTK_DOC_V_PDF_@AM_V@)
222 GTK_DOC_V_PDF_=$(GTK_DOC_V_PDF_@AM_DEFAULT_V@)
223 GTK_DOC_V_PDF_0=@echo " DOC Building PDF";
224
225 pdf-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) $(expand_content_files)
226 $(GTK_DOC_V_PDF)rm -f $(DOC_MODULE).pdf && \
227 mkpdf_options=""; \
171228 gtkdoc-mkpdf 2>&1 --help | grep >/dev/null "\-\-verbose"; \
172 if test "$(?)" = "0"; then \
229 if test "$$?" = "0"; then \
173230 if test "x$(V)" = "x1"; then \
174231 mkpdf_options="$$mkpdf_options --verbose"; \
175232 fi; \
184241 done; \
185242 fi; \
186243 gtkdoc-mkpdf --path="$(abs_srcdir)" $$mkpdf_options $(DOC_MODULE) $(DOC_MAIN_SGML_FILE) $(MKPDF_OPTIONS)
187 @touch pdf-build.stamp
244 $(AM_V_at)touch pdf-build.stamp
188245
189246 ##############
190247
191248 clean-local:
192249 @rm -f *~ *.bak
193250 @rm -rf .libs
251 @if echo $(SCAN_OPTIONS) | grep -q "\-\-rebuild-types" ; then \
252 rm -f $(DOC_MODULE).types; \
253 fi
254 @if echo $(SCAN_OPTIONS) | grep -q "\-\-rebuild-sections" ; then \
255 rm -f $(DOC_MODULE)-sections.txt; \
256 fi
194257
195258 distclean-local:
196259 @rm -rf xml html $(REPORT_FILES) $(DOC_MODULE).pdf \
197260 $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt
198261 @if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \
199 rm -f $(SETUP_FILES) $(expand_content_files) $(DOC_MODULE).types; \
200 fi
201
202 maintainer-clean-local: clean
262 rm -f $(SETUP_FILES) $(DOC_MODULE).types; \
263 fi
264
265 maintainer-clean-local:
203266 @rm -rf xml html
204267
205268 install-data-local:
235298 #
236299 # Require gtk-doc when making dist
237300 #
238 if ENABLE_GTK_DOC
239 dist-check-gtkdoc:
301 if HAVE_GTK_DOC
302 dist-check-gtkdoc: docs
240303 else
241304 dist-check-gtkdoc:
242 @echo "*** gtk-doc must be installed and enabled in order to make dist"
305 @echo "*** gtk-doc is needed to run 'make dist'. ***"
306 @echo "*** gtk-doc was not found when 'configure' ran. ***"
307 @echo "*** please install gtk-doc and rerun 'configure'. ***"
243308 @false
244309 endif
245310
246 dist-hook: dist-check-gtkdoc dist-hook-local
311 dist-hook: dist-check-gtkdoc all-gtk-doc dist-hook-local
247312 @mkdir $(distdir)/html
248313 @cp ./html/* $(distdir)/html
249314 @-cp ./$(DOC_MODULE).pdf $(distdir)/
2525 libvirt-gconfig-domain-address.h \
2626 libvirt-gconfig-domain-address-pci.h \
2727 libvirt-gconfig-domain-address-usb.h \
28 libvirt-gconfig-domain-capabilities.h \
29 libvirt-gconfig-domain-capabilities-os.h \
2830 libvirt-gconfig-domain-channel.h \
2931 libvirt-gconfig-domain-chardev.h \
3032 libvirt-gconfig-domain-chardev-source.h \
118120 libvirt-gconfig-domain-address.c \
119121 libvirt-gconfig-domain-address-pci.c \
120122 libvirt-gconfig-domain-address-usb.c \
123 libvirt-gconfig-domain-capabilities.c \
124 libvirt-gconfig-domain-capabilities-os.c \
121125 libvirt-gconfig-domain-channel.c \
122126 libvirt-gconfig-domain-chardev.c \
123127 libvirt-gconfig-domain-chardev-source.c \
200204 nodist_libvirt_gconfig_1_0_la_SOURCES = \
201205 $(GCONFIG_GENERATED_FILES)
202206 libvirt_gconfig_1_0_la_CFLAGS = \
207 -DGETTEXT_PACKAGE="\"libvirt-glib\"" \
203208 -DG_LOG_DOMAIN="\"Libvirt.GConfig\"" \
204209 -DDATADIR="\"$(datadir)\"" \
205210 -DLIBVIRT_GCONFIG_BUILD \
211 -DGLIB_VERSION_MIN_REQUIRED=$(GLIB2_VERSION_SYMBOL) \
212 -DGLIB_VERSION_MAX_ALLOWED=$(GLIB2_VERSION_SYMBOL) \
206213 $(COVERAGE_CFLAGS) \
207214 -I$(top_srcdir) \
208215 -I$(top_builddir) \
0 # Makefile.in generated by automake 1.15.1 from Makefile.am.
0 # Makefile.in generated by automake 1.16.1 from Makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
9494 subdir = libvirt-gconfig
9595 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
9696 am__aclocal_m4_deps = $(top_srcdir)/m4/glibtests.m4 \
97 $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
98 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
99 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
100 $(top_srcdir)/m4/manywarnings.m4 \
97 $(top_srcdir)/m4/gtk-doc.m4 $(top_srcdir)/m4/introspection.m4 \
98 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
99 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
100 $(top_srcdir)/m4/lt~obsolete.m4 \
101 $(top_srcdir)/m4/manywarnings.m4 $(top_srcdir)/m4/pkg.m4 \
101102 $(top_srcdir)/m4/virt-compile-warnings.m4 \
102 $(top_srcdir)/m4/virt-gettext.m4 $(top_srcdir)/m4/warnings.m4 \
103 $(top_srcdir)/m4/virt-nls.m4 $(top_srcdir)/m4/warnings.m4 \
103104 $(top_srcdir)/configure.ac
104105 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
105106 $(ACLOCAL_M4)
161162 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-address.lo \
162163 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-address-pci.lo \
163164 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-address-usb.lo \
165 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-capabilities.lo \
166 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-capabilities-os.lo \
164167 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-channel.lo \
165168 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev.lo \
166169 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev-source.lo \
254257 am__v_at_1 =
255258 DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
256259 depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp
257 am__depfiles_maybe = depfiles
260 am__maybe_remake_depfiles = depfiles
261 am__depfiles_remade = ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-cpu-feature.Plo \
262 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-cpu-model.Plo \
263 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-cpu-topology.Plo \
264 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-cpu.Plo \
265 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-guest-arch.Plo \
266 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-guest-domain.Plo \
267 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-guest-feature.Plo \
268 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-guest.Plo \
269 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-host-secmodel.Plo \
270 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-host.Plo \
271 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities.Plo \
272 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-address-pci.Plo \
273 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-address-usb.Plo \
274 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-address.Plo \
275 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-capabilities-os.Plo \
276 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-capabilities.Plo \
277 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-channel.Plo \
278 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev-source-pty.Plo \
279 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev-source-spiceport.Plo \
280 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev-source-spicevmc.Plo \
281 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev-source-unix.Plo \
282 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev-source.Plo \
283 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev.Plo \
284 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-clock.Plo \
285 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-console.Plo \
286 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-controller-usb.Plo \
287 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-controller.Plo \
288 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-cpu-feature.Plo \
289 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-cpu-model.Plo \
290 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-cpu.Plo \
291 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-device.Plo \
292 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-disk-driver.Plo \
293 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-disk.Plo \
294 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-filesys.Plo \
295 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-graphics-desktop.Plo \
296 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-graphics-rdp.Plo \
297 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-graphics-sdl.Plo \
298 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-graphics-spice.Plo \
299 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-graphics-vnc.Plo \
300 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-graphics.Plo \
301 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-hostdev-pci.Plo \
302 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-hostdev.Plo \
303 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-input.Plo \
304 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-bridge.Plo \
305 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-filterref-parameter.Plo \
306 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-filterref.Plo \
307 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-network.Plo \
308 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-user.Plo \
309 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface.Plo \
310 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-memballoon.Plo \
311 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-os.Plo \
312 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-parallel.Plo \
313 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-power-management.Plo \
314 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-redirdev.Plo \
315 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-seclabel.Plo \
316 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-serial.Plo \
317 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-smartcard-host-certificates.Plo \
318 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-smartcard-host.Plo \
319 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-smartcard-passthrough.Plo \
320 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-smartcard.Plo \
321 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-snapshot-disk.Plo \
322 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-snapshot.Plo \
323 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-sound.Plo \
324 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-timer-hpet.Plo \
325 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-timer-pit.Plo \
326 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-timer-rtc.Plo \
327 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-timer.Plo \
328 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-video.Plo \
329 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain.Plo \
330 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-enum-types.Plo \
331 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-helpers.Plo \
332 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-interface.Plo \
333 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-main.Plo \
334 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-network-filter.Plo \
335 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-network.Plo \
336 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-node-device.Plo \
337 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-object.Plo \
338 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-secret.Plo \
339 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-storage-permissions.Plo \
340 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-storage-pool-source.Plo \
341 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-storage-pool-target.Plo \
342 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-storage-pool.Plo \
343 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-storage-vol-backing-store.Plo \
344 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-storage-vol-target.Plo \
345 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-storage-vol.Plo \
346 ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-xml-doc.Plo
258347 am__mv = mv -f
259348 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
260349 $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
300389 $(RECURSIVE_CLEAN_TARGETS) \
301390 $(am__extra_recursive_targets)
302391 AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
303 distdir
392 distdir distdir-am
304393 am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
305394 # Read a list of newline-separated strings from the standard input,
306395 # and print each of them once, without duplicates. Input order is
350439 done; \
351440 reldir="$$dir2"
352441 ACLOCAL = @ACLOCAL@
353 ALL_LINGUAS = @ALL_LINGUAS@
354442 AMTAR = @AMTAR@
355443 AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
356444 AR = @AR@
381469 EGREP = @EGREP@
382470 EXEEXT = @EXEEXT@
383471 FGREP = @FGREP@
384 GETTEXT_PACKAGE = @GETTEXT_PACKAGE@
385472 GIO2_CFLAGS = @GIO2_CFLAGS@
386473 GIO2_LIBS = @GIO2_LIBS@
387474 GLIB2_CFLAGS = @GLIB2_CFLAGS@
388475 GLIB2_LIBS = @GLIB2_LIBS@
389476 GLIB2_REQUIRED = @GLIB2_REQUIRED@
477 GLIB2_VERSION_SYMBOL = @GLIB2_VERSION_SYMBOL@
390478 GLIB_MKENUMS = @GLIB_MKENUMS@
391 GMSGFMT = @GMSGFMT@
392479 GOBJECT2_CFLAGS = @GOBJECT2_CFLAGS@
393480 GOBJECT2_LIBS = @GOBJECT2_LIBS@
394481 GREP = @GREP@
406493 INSTALL_PROGRAM = @INSTALL_PROGRAM@
407494 INSTALL_SCRIPT = @INSTALL_SCRIPT@
408495 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
409 INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
410 INTLTOOL_MERGE = @INTLTOOL_MERGE@
411 INTLTOOL_PERL = @INTLTOOL_PERL@
412 INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
413 INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@
414 INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@
415 INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@
416 INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@
417496 INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@
418497 INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@
419498 INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@
471550 SET_MAKE = @SET_MAKE@
472551 SHELL = @SHELL@
473552 STRIP = @STRIP@
474 USE_NLS = @USE_NLS@
475553 VAPIGEN = @VAPIGEN@
476554 VERSION = @VERSION@
477555 WARN_CFLAGS = @WARN_CFLAGS@
511589 install_sh = @install_sh@
512590 installed_test_metadir = @installed_test_metadir@
513591 installed_testdir = @installed_testdir@
514 intltool__v_merge_options_ = @intltool__v_merge_options_@
515 intltool__v_merge_options_0 = @intltool__v_merge_options_0@
516592 libdir = @libdir@
517593 libexecdir = @libexecdir@
518594 localedir = @localedir@
558634 libvirt-gconfig-domain-address.h \
559635 libvirt-gconfig-domain-address-pci.h \
560636 libvirt-gconfig-domain-address-usb.h \
637 libvirt-gconfig-domain-capabilities.h \
638 libvirt-gconfig-domain-capabilities-os.h \
561639 libvirt-gconfig-domain-channel.h \
562640 libvirt-gconfig-domain-chardev.h \
563641 libvirt-gconfig-domain-chardev-source.h \
653731 libvirt-gconfig-domain-address.c \
654732 libvirt-gconfig-domain-address-pci.c \
655733 libvirt-gconfig-domain-address-usb.c \
734 libvirt-gconfig-domain-capabilities.c \
735 libvirt-gconfig-domain-capabilities-os.c \
656736 libvirt-gconfig-domain-channel.c \
657737 libvirt-gconfig-domain-chardev.c \
658738 libvirt-gconfig-domain-chardev-source.c \
739819 $(GCONFIG_GENERATED_FILES)
740820
741821 libvirt_gconfig_1_0_la_CFLAGS = \
822 -DGETTEXT_PACKAGE="\"libvirt-glib\"" \
742823 -DG_LOG_DOMAIN="\"Libvirt.GConfig\"" \
743824 -DDATADIR="\"$(datadir)\"" \
744825 -DLIBVIRT_GCONFIG_BUILD \
826 -DGLIB_VERSION_MIN_REQUIRED=$(GLIB2_VERSION_SYMBOL) \
827 -DGLIB_VERSION_MAX_ALLOWED=$(GLIB2_VERSION_SYMBOL) \
745828 $(COVERAGE_CFLAGS) \
746829 -I$(top_srcdir) \
747830 -I$(top_builddir) \
810893 *config.status*) \
811894 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
812895 *) \
813 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
814 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
896 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
897 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
815898 esac;
816899
817900 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
867950 distclean-compile:
868951 -rm -f *.tab.c
869952
870 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-cpu-feature.Plo@am__quote@
871 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-cpu-model.Plo@am__quote@
872 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-cpu-topology.Plo@am__quote@
873 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-cpu.Plo@am__quote@
874 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-guest-arch.Plo@am__quote@
875 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-guest-domain.Plo@am__quote@
876 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-guest-feature.Plo@am__quote@
877 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-guest.Plo@am__quote@
878 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-host-secmodel.Plo@am__quote@
879 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-host.Plo@am__quote@
880 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities.Plo@am__quote@
881 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-address-pci.Plo@am__quote@
882 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-address-usb.Plo@am__quote@
883 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-address.Plo@am__quote@
884 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-channel.Plo@am__quote@
885 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev-source-pty.Plo@am__quote@
886 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev-source-spiceport.Plo@am__quote@
887 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev-source-spicevmc.Plo@am__quote@
888 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev-source-unix.Plo@am__quote@
889 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev-source.Plo@am__quote@
890 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev.Plo@am__quote@
891 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-clock.Plo@am__quote@
892 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-console.Plo@am__quote@
893 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-controller-usb.Plo@am__quote@
894 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-controller.Plo@am__quote@
895 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-cpu-feature.Plo@am__quote@
896 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-cpu-model.Plo@am__quote@
897 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-cpu.Plo@am__quote@
898 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-device.Plo@am__quote@
899 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-disk-driver.Plo@am__quote@
900 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-disk.Plo@am__quote@
901 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-filesys.Plo@am__quote@
902 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-graphics-desktop.Plo@am__quote@
903 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-graphics-rdp.Plo@am__quote@
904 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-graphics-sdl.Plo@am__quote@
905 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-graphics-spice.Plo@am__quote@
906 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-graphics-vnc.Plo@am__quote@
907 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-graphics.Plo@am__quote@
908 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-hostdev-pci.Plo@am__quote@
909 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-hostdev.Plo@am__quote@
910 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-input.Plo@am__quote@
911 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-bridge.Plo@am__quote@
912 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-filterref-parameter.Plo@am__quote@
913 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-filterref.Plo@am__quote@
914 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-network.Plo@am__quote@
915 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-user.Plo@am__quote@
916 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface.Plo@am__quote@
917 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-memballoon.Plo@am__quote@
918 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-os.Plo@am__quote@
919 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-parallel.Plo@am__quote@
920 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-power-management.Plo@am__quote@
921 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-redirdev.Plo@am__quote@
922 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-seclabel.Plo@am__quote@
923 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-serial.Plo@am__quote@
924 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-smartcard-host-certificates.Plo@am__quote@
925 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-smartcard-host.Plo@am__quote@
926 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-smartcard-passthrough.Plo@am__quote@
927 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-smartcard.Plo@am__quote@
928 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-snapshot-disk.Plo@am__quote@
929 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-snapshot.Plo@am__quote@
930 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-sound.Plo@am__quote@
931 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-timer-hpet.Plo@am__quote@
932 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-timer-pit.Plo@am__quote@
933 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-timer-rtc.Plo@am__quote@
934 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-timer.Plo@am__quote@
935 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-video.Plo@am__quote@
936 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain.Plo@am__quote@
937 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-enum-types.Plo@am__quote@
938 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-helpers.Plo@am__quote@
939 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-interface.Plo@am__quote@
940 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-main.Plo@am__quote@
941 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-network-filter.Plo@am__quote@
942 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-network.Plo@am__quote@
943 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-node-device.Plo@am__quote@
944 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-object.Plo@am__quote@
945 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-secret.Plo@am__quote@
946 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-storage-permissions.Plo@am__quote@
947 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-storage-pool-source.Plo@am__quote@
948 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-storage-pool-target.Plo@am__quote@
949 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-storage-pool.Plo@am__quote@
950 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-storage-vol-backing-store.Plo@am__quote@
951 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-storage-vol-target.Plo@am__quote@
952 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-storage-vol.Plo@am__quote@
953 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-xml-doc.Plo@am__quote@
953 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-cpu-feature.Plo@am__quote@ # am--include-marker
954 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-cpu-model.Plo@am__quote@ # am--include-marker
955 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-cpu-topology.Plo@am__quote@ # am--include-marker
956 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-cpu.Plo@am__quote@ # am--include-marker
957 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-guest-arch.Plo@am__quote@ # am--include-marker
958 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-guest-domain.Plo@am__quote@ # am--include-marker
959 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-guest-feature.Plo@am__quote@ # am--include-marker
960 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-guest.Plo@am__quote@ # am--include-marker
961 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-host-secmodel.Plo@am__quote@ # am--include-marker
962 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-host.Plo@am__quote@ # am--include-marker
963 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities.Plo@am__quote@ # am--include-marker
964 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-address-pci.Plo@am__quote@ # am--include-marker
965 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-address-usb.Plo@am__quote@ # am--include-marker
966 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-address.Plo@am__quote@ # am--include-marker
967 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-capabilities-os.Plo@am__quote@ # am--include-marker
968 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-capabilities.Plo@am__quote@ # am--include-marker
969 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-channel.Plo@am__quote@ # am--include-marker
970 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev-source-pty.Plo@am__quote@ # am--include-marker
971 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev-source-spiceport.Plo@am__quote@ # am--include-marker
972 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev-source-spicevmc.Plo@am__quote@ # am--include-marker
973 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev-source-unix.Plo@am__quote@ # am--include-marker
974 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev-source.Plo@am__quote@ # am--include-marker
975 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev.Plo@am__quote@ # am--include-marker
976 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-clock.Plo@am__quote@ # am--include-marker
977 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-console.Plo@am__quote@ # am--include-marker
978 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-controller-usb.Plo@am__quote@ # am--include-marker
979 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-controller.Plo@am__quote@ # am--include-marker
980 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-cpu-feature.Plo@am__quote@ # am--include-marker
981 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-cpu-model.Plo@am__quote@ # am--include-marker
982 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-cpu.Plo@am__quote@ # am--include-marker
983 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-device.Plo@am__quote@ # am--include-marker
984 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-disk-driver.Plo@am__quote@ # am--include-marker
985 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-disk.Plo@am__quote@ # am--include-marker
986 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-filesys.Plo@am__quote@ # am--include-marker
987 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-graphics-desktop.Plo@am__quote@ # am--include-marker
988 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-graphics-rdp.Plo@am__quote@ # am--include-marker
989 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-graphics-sdl.Plo@am__quote@ # am--include-marker
990 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-graphics-spice.Plo@am__quote@ # am--include-marker
991 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-graphics-vnc.Plo@am__quote@ # am--include-marker
992 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-graphics.Plo@am__quote@ # am--include-marker
993 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-hostdev-pci.Plo@am__quote@ # am--include-marker
994 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-hostdev.Plo@am__quote@ # am--include-marker
995 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-input.Plo@am__quote@ # am--include-marker
996 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-bridge.Plo@am__quote@ # am--include-marker
997 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-filterref-parameter.Plo@am__quote@ # am--include-marker
998 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-filterref.Plo@am__quote@ # am--include-marker
999 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-network.Plo@am__quote@ # am--include-marker
1000 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-user.Plo@am__quote@ # am--include-marker
1001 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface.Plo@am__quote@ # am--include-marker
1002 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-memballoon.Plo@am__quote@ # am--include-marker
1003 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-os.Plo@am__quote@ # am--include-marker
1004 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-parallel.Plo@am__quote@ # am--include-marker
1005 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-power-management.Plo@am__quote@ # am--include-marker
1006 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-redirdev.Plo@am__quote@ # am--include-marker
1007 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-seclabel.Plo@am__quote@ # am--include-marker
1008 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-serial.Plo@am__quote@ # am--include-marker
1009 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-smartcard-host-certificates.Plo@am__quote@ # am--include-marker
1010 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-smartcard-host.Plo@am__quote@ # am--include-marker
1011 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-smartcard-passthrough.Plo@am__quote@ # am--include-marker
1012 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-smartcard.Plo@am__quote@ # am--include-marker
1013 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-snapshot-disk.Plo@am__quote@ # am--include-marker
1014 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-snapshot.Plo@am__quote@ # am--include-marker
1015 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-sound.Plo@am__quote@ # am--include-marker
1016 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-timer-hpet.Plo@am__quote@ # am--include-marker
1017 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-timer-pit.Plo@am__quote@ # am--include-marker
1018 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-timer-rtc.Plo@am__quote@ # am--include-marker
1019 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-timer.Plo@am__quote@ # am--include-marker
1020 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-video.Plo@am__quote@ # am--include-marker
1021 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain.Plo@am__quote@ # am--include-marker
1022 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-enum-types.Plo@am__quote@ # am--include-marker
1023 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-helpers.Plo@am__quote@ # am--include-marker
1024 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-interface.Plo@am__quote@ # am--include-marker
1025 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-main.Plo@am__quote@ # am--include-marker
1026 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-network-filter.Plo@am__quote@ # am--include-marker
1027 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-network.Plo@am__quote@ # am--include-marker
1028 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-node-device.Plo@am__quote@ # am--include-marker
1029 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-object.Plo@am__quote@ # am--include-marker
1030 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-secret.Plo@am__quote@ # am--include-marker
1031 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-storage-permissions.Plo@am__quote@ # am--include-marker
1032 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-storage-pool-source.Plo@am__quote@ # am--include-marker
1033 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-storage-pool-target.Plo@am__quote@ # am--include-marker
1034 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-storage-pool.Plo@am__quote@ # am--include-marker
1035 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-storage-vol-backing-store.Plo@am__quote@ # am--include-marker
1036 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-storage-vol-target.Plo@am__quote@ # am--include-marker
1037 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-storage-vol.Plo@am__quote@ # am--include-marker
1038 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-xml-doc.Plo@am__quote@ # am--include-marker
1039
1040 $(am__depfiles_remade):
1041 @$(MKDIR_P) $(@D)
1042 @echo '# dummy' >$@-t && $(am__mv) $@-t $@
1043
1044 am--depfiles: $(am__depfiles_remade)
9541045
9551046 .c.o:
9561047 @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
10911182 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libvirt-gconfig-domain-address-usb.c' object='libvirt_gconfig_1_0_la-libvirt-gconfig-domain-address-usb.lo' libtool=yes @AMDEPBACKSLASH@
10921183 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10931184 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvirt_gconfig_1_0_la_CFLAGS) $(CFLAGS) -c -o libvirt_gconfig_1_0_la-libvirt-gconfig-domain-address-usb.lo `test -f 'libvirt-gconfig-domain-address-usb.c' || echo '$(srcdir)/'`libvirt-gconfig-domain-address-usb.c
1185
1186 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-capabilities.lo: libvirt-gconfig-domain-capabilities.c
1187 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvirt_gconfig_1_0_la_CFLAGS) $(CFLAGS) -MT libvirt_gconfig_1_0_la-libvirt-gconfig-domain-capabilities.lo -MD -MP -MF $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-capabilities.Tpo -c -o libvirt_gconfig_1_0_la-libvirt-gconfig-domain-capabilities.lo `test -f 'libvirt-gconfig-domain-capabilities.c' || echo '$(srcdir)/'`libvirt-gconfig-domain-capabilities.c
1188 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-capabilities.Tpo $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-capabilities.Plo
1189 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libvirt-gconfig-domain-capabilities.c' object='libvirt_gconfig_1_0_la-libvirt-gconfig-domain-capabilities.lo' libtool=yes @AMDEPBACKSLASH@
1190 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1191 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvirt_gconfig_1_0_la_CFLAGS) $(CFLAGS) -c -o libvirt_gconfig_1_0_la-libvirt-gconfig-domain-capabilities.lo `test -f 'libvirt-gconfig-domain-capabilities.c' || echo '$(srcdir)/'`libvirt-gconfig-domain-capabilities.c
1192
1193 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-capabilities-os.lo: libvirt-gconfig-domain-capabilities-os.c
1194 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvirt_gconfig_1_0_la_CFLAGS) $(CFLAGS) -MT libvirt_gconfig_1_0_la-libvirt-gconfig-domain-capabilities-os.lo -MD -MP -MF $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-capabilities-os.Tpo -c -o libvirt_gconfig_1_0_la-libvirt-gconfig-domain-capabilities-os.lo `test -f 'libvirt-gconfig-domain-capabilities-os.c' || echo '$(srcdir)/'`libvirt-gconfig-domain-capabilities-os.c
1195 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-capabilities-os.Tpo $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-capabilities-os.Plo
1196 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libvirt-gconfig-domain-capabilities-os.c' object='libvirt_gconfig_1_0_la-libvirt-gconfig-domain-capabilities-os.lo' libtool=yes @AMDEPBACKSLASH@
1197 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1198 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvirt_gconfig_1_0_la_CFLAGS) $(CFLAGS) -c -o libvirt_gconfig_1_0_la-libvirt-gconfig-domain-capabilities-os.lo `test -f 'libvirt-gconfig-domain-capabilities-os.c' || echo '$(srcdir)/'`libvirt-gconfig-domain-capabilities-os.c
10941199
10951200 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-channel.lo: libvirt-gconfig-domain-channel.c
10961201 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvirt_gconfig_1_0_la_CFLAGS) $(CFLAGS) -MT libvirt_gconfig_1_0_la-libvirt-gconfig-domain-channel.lo -MD -MP -MF $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-channel.Tpo -c -o libvirt_gconfig_1_0_la-libvirt-gconfig-domain-channel.lo `test -f 'libvirt-gconfig-domain-channel.c' || echo '$(srcdir)/'`libvirt-gconfig-domain-channel.c
17501855 distclean-tags:
17511856 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
17521857
1753 distdir: $(DISTFILES)
1858 distdir: $(BUILT_SOURCES)
1859 $(MAKE) $(AM_MAKEFLAGS) distdir-am
1860
1861 distdir-am: $(DISTFILES)
17541862 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
17551863 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
17561864 list='$(DISTFILES)'; \
18541962 mostlyclean-am
18551963
18561964 distclean: distclean-recursive
1857 -rm -rf ./$(DEPDIR)
1965 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-cpu-feature.Plo
1966 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-cpu-model.Plo
1967 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-cpu-topology.Plo
1968 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-cpu.Plo
1969 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-guest-arch.Plo
1970 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-guest-domain.Plo
1971 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-guest-feature.Plo
1972 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-guest.Plo
1973 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-host-secmodel.Plo
1974 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-host.Plo
1975 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities.Plo
1976 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-address-pci.Plo
1977 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-address-usb.Plo
1978 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-address.Plo
1979 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-capabilities-os.Plo
1980 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-capabilities.Plo
1981 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-channel.Plo
1982 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev-source-pty.Plo
1983 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev-source-spiceport.Plo
1984 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev-source-spicevmc.Plo
1985 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev-source-unix.Plo
1986 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev-source.Plo
1987 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev.Plo
1988 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-clock.Plo
1989 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-console.Plo
1990 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-controller-usb.Plo
1991 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-controller.Plo
1992 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-cpu-feature.Plo
1993 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-cpu-model.Plo
1994 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-cpu.Plo
1995 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-device.Plo
1996 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-disk-driver.Plo
1997 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-disk.Plo
1998 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-filesys.Plo
1999 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-graphics-desktop.Plo
2000 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-graphics-rdp.Plo
2001 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-graphics-sdl.Plo
2002 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-graphics-spice.Plo
2003 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-graphics-vnc.Plo
2004 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-graphics.Plo
2005 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-hostdev-pci.Plo
2006 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-hostdev.Plo
2007 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-input.Plo
2008 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-bridge.Plo
2009 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-filterref-parameter.Plo
2010 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-filterref.Plo
2011 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-network.Plo
2012 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-user.Plo
2013 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface.Plo
2014 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-memballoon.Plo
2015 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-os.Plo
2016 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-parallel.Plo
2017 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-power-management.Plo
2018 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-redirdev.Plo
2019 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-seclabel.Plo
2020 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-serial.Plo
2021 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-smartcard-host-certificates.Plo
2022 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-smartcard-host.Plo
2023 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-smartcard-passthrough.Plo
2024 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-smartcard.Plo
2025 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-snapshot-disk.Plo
2026 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-snapshot.Plo
2027 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-sound.Plo
2028 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-timer-hpet.Plo
2029 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-timer-pit.Plo
2030 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-timer-rtc.Plo
2031 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-timer.Plo
2032 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-video.Plo
2033 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain.Plo
2034 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-enum-types.Plo
2035 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-helpers.Plo
2036 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-interface.Plo
2037 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-main.Plo
2038 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-network-filter.Plo
2039 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-network.Plo
2040 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-node-device.Plo
2041 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-object.Plo
2042 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-secret.Plo
2043 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-storage-permissions.Plo
2044 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-storage-pool-source.Plo
2045 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-storage-pool-target.Plo
2046 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-storage-pool.Plo
2047 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-storage-vol-backing-store.Plo
2048 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-storage-vol-target.Plo
2049 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-storage-vol.Plo
2050 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-xml-doc.Plo
18582051 -rm -f Makefile
18592052 distclean-am: clean-am distclean-compile distclean-generic \
18602053 distclean-tags
19022095 installcheck-am:
19032096
19042097 maintainer-clean: maintainer-clean-recursive
1905 -rm -rf ./$(DEPDIR)
2098 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-cpu-feature.Plo
2099 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-cpu-model.Plo
2100 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-cpu-topology.Plo
2101 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-cpu.Plo
2102 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-guest-arch.Plo
2103 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-guest-domain.Plo
2104 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-guest-feature.Plo
2105 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-guest.Plo
2106 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-host-secmodel.Plo
2107 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-host.Plo
2108 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities.Plo
2109 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-address-pci.Plo
2110 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-address-usb.Plo
2111 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-address.Plo
2112 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-capabilities-os.Plo
2113 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-capabilities.Plo
2114 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-channel.Plo
2115 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev-source-pty.Plo
2116 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev-source-spiceport.Plo
2117 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev-source-spicevmc.Plo
2118 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev-source-unix.Plo
2119 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev-source.Plo
2120 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev.Plo
2121 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-clock.Plo
2122 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-console.Plo
2123 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-controller-usb.Plo
2124 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-controller.Plo
2125 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-cpu-feature.Plo
2126 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-cpu-model.Plo
2127 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-cpu.Plo
2128 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-device.Plo
2129 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-disk-driver.Plo
2130 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-disk.Plo
2131 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-filesys.Plo
2132 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-graphics-desktop.Plo
2133 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-graphics-rdp.Plo
2134 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-graphics-sdl.Plo
2135 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-graphics-spice.Plo
2136 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-graphics-vnc.Plo
2137 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-graphics.Plo
2138 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-hostdev-pci.Plo
2139 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-hostdev.Plo
2140 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-input.Plo
2141 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-bridge.Plo
2142 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-filterref-parameter.Plo
2143 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-filterref.Plo
2144 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-network.Plo
2145 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-user.Plo
2146 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface.Plo
2147 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-memballoon.Plo
2148 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-os.Plo
2149 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-parallel.Plo
2150 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-power-management.Plo
2151 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-redirdev.Plo
2152 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-seclabel.Plo
2153 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-serial.Plo
2154 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-smartcard-host-certificates.Plo
2155 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-smartcard-host.Plo
2156 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-smartcard-passthrough.Plo
2157 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-smartcard.Plo
2158 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-snapshot-disk.Plo
2159 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-snapshot.Plo
2160 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-sound.Plo
2161 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-timer-hpet.Plo
2162 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-timer-pit.Plo
2163 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-timer-rtc.Plo
2164 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-timer.Plo
2165 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-video.Plo
2166 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain.Plo
2167 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-enum-types.Plo
2168 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-helpers.Plo
2169 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-interface.Plo
2170 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-main.Plo
2171 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-network-filter.Plo
2172 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-network.Plo
2173 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-node-device.Plo
2174 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-object.Plo
2175 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-secret.Plo
2176 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-storage-permissions.Plo
2177 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-storage-pool-source.Plo
2178 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-storage-pool-target.Plo
2179 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-storage-pool.Plo
2180 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-storage-vol-backing-store.Plo
2181 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-storage-vol-target.Plo
2182 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-storage-vol.Plo
2183 -rm -f ./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-xml-doc.Plo
19062184 -rm -f Makefile
19072185 maintainer-clean-am: distclean-am maintainer-clean-generic
19082186
19272205 .MAKE: $(am__recursive_targets) all check check-am install install-am \
19282206 install-strip
19292207
1930 .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \
1931 check-am check-local clean clean-generic clean-libLTLIBRARIES \
1932 clean-libtool cscopelist-am ctags ctags-am distclean \
1933 distclean-compile distclean-generic distclean-libtool \
1934 distclean-tags distdir dvi dvi-am html html-am info info-am \
1935 install install-am install-data install-data-am install-dvi \
1936 install-dvi-am install-exec install-exec-am install-girDATA \
1937 install-html install-html-am install-info install-info-am \
1938 install-libLTLIBRARIES install-libvirt_gconfig_1_0_laHEADERS \
1939 install-man install-nodist_libvirt_gconfig_1_0_laHEADERS \
1940 install-pdf install-pdf-am install-ps install-ps-am \
1941 install-strip install-typelibDATA installcheck installcheck-am \
1942 installdirs installdirs-am maintainer-clean \
1943 maintainer-clean-generic mostlyclean mostlyclean-compile \
1944 mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
1945 tags tags-am uninstall uninstall-am uninstall-girDATA \
1946 uninstall-libLTLIBRARIES \
2208 .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \
2209 am--depfiles check check-am check-local clean clean-generic \
2210 clean-libLTLIBRARIES clean-libtool cscopelist-am ctags \
2211 ctags-am distclean distclean-compile distclean-generic \
2212 distclean-libtool distclean-tags distdir dvi dvi-am html \
2213 html-am info info-am install install-am install-data \
2214 install-data-am install-dvi install-dvi-am install-exec \
2215 install-exec-am install-girDATA install-html install-html-am \
2216 install-info install-info-am install-libLTLIBRARIES \
2217 install-libvirt_gconfig_1_0_laHEADERS install-man \
2218 install-nodist_libvirt_gconfig_1_0_laHEADERS install-pdf \
2219 install-pdf-am install-ps install-ps-am install-strip \
2220 install-typelibDATA installcheck installcheck-am installdirs \
2221 installdirs-am maintainer-clean maintainer-clean-generic \
2222 mostlyclean mostlyclean-compile mostlyclean-generic \
2223 mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \
2224 uninstall-am uninstall-girDATA uninstall-libLTLIBRARIES \
19472225 uninstall-libvirt_gconfig_1_0_laHEADERS \
19482226 uninstall-nodist_libvirt_gconfig_1_0_laHEADERS \
19492227 uninstall-typelibDATA
0 /*
1 * libvirt-gconfig-domain-capabilities-os.c: libvirt OS domain capabilities
2 *
3 * Copyright (C) 2019 Red Hat, Inc.
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library. If not, see
17 * <http://www.gnu.org/licenses/>.
18 */
19
20 #include <config.h>
21
22 #include "libvirt-gconfig/libvirt-gconfig.h"
23 #include "libvirt-gconfig/libvirt-gconfig-private.h"
24
25 #define GVIR_CONFIG_DOMAIN_CAPABILITIES_OS_GET_PRIVATE(obj) \
26 (G_TYPE_INSTANCE_GET_PRIVATE((obj), GVIR_CONFIG_TYPE_DOMAIN_CAPABILITIES_OS, GVirConfigDomainCapabilitiesOsPrivate))
27
28 struct _GVirConfigDomainCapabilitiesOsPrivate
29 {
30 gboolean unused;
31 };
32
33 G_DEFINE_TYPE_WITH_PRIVATE(GVirConfigDomainCapabilitiesOs, gvir_config_domain_capabilities_os, GVIR_CONFIG_TYPE_OBJECT);
34
35 static GList *
36 _gvir_config_domain_capabilities_os_get_firmwares(GVirConfigDomainCapabilitiesOs *os);
37
38 static void gvir_config_domain_capabilities_os_class_init(GVirConfigDomainCapabilitiesOsClass *klass)
39 {
40 klass->get_firmwares = _gvir_config_domain_capabilities_os_get_firmwares;
41 }
42
43 static void gvir_config_domain_capabilities_os_init(GVirConfigDomainCapabilitiesOs *os)
44 {
45 os->priv = GVIR_CONFIG_DOMAIN_CAPABILITIES_OS_GET_PRIVATE(os);
46 }
47
48 static gboolean add_firmwares(xmlNodePtr node, gpointer opaque)
49 {
50 GList **firmwares = opaque;
51 GVirConfigDomainOsFirmware firmware;
52
53 if (node == NULL || node->children == NULL)
54 return TRUE;
55
56 firmware = gvir_config_genum_get_value
57 (GVIR_CONFIG_TYPE_DOMAIN_OS_FIRMWARE,
58 (const gchar *)node->children->content,
59 GVIR_CONFIG_DOMAIN_OS_FIRMWARE_BIOS);
60 *firmwares = g_list_append(*firmwares, GINT_TO_POINTER(firmware));
61
62 return TRUE;
63 }
64
65 static gboolean search_firmwares(xmlNodePtr node, gpointer opaque)
66 {
67 const gchar *content;
68
69 if (!g_str_equal(node->name, "enum"))
70 return TRUE;
71
72 content = gvir_config_xml_get_attribute_content(node, "name");
73 if (content == NULL)
74 return TRUE;
75
76 if (!g_str_equal(content, "firmware"))
77 return TRUE;
78
79 gvir_config_xml_foreach_child(node,
80 add_firmwares,
81 opaque);
82
83 return TRUE;
84 }
85
86 static GList *
87 _gvir_config_domain_capabilities_os_get_firmwares(GVirConfigDomainCapabilitiesOs *os)
88 {
89 GList *firmwares = NULL;
90
91 g_return_val_if_fail(GVIR_CONFIG_IS_DOMAIN_CAPABILITIES_OS(os), NULL);
92
93 gvir_config_object_foreach_child(GVIR_CONFIG_OBJECT(os),
94 NULL,
95 search_firmwares,
96 &firmwares);
97
98 return firmwares;
99 }
100
101 /**
102 * gvir_config_domain_capabilities_os_get_firmwares:
103 *
104 * Gets the firmwares supported by @os. The returned list should be freed with
105 * g_list_free().
106 *
107 * Returns: (element-type LibvirtGConfig.DomainOsFirmware) (transfer container):
108 * a newly allocated #GList of #GVirConfigDomainOsFirmware.
109 */
110 GList *
111 gvir_config_domain_capabilities_os_get_firmwares(GVirConfigDomainCapabilitiesOs *os)
112 {
113 return GVIR_CONFIG_DOMAIN_CAPABILITIES_OS_GET_CLASS(os)->get_firmwares(os);
114 }
0 /*
1 * libvirt-gconfig-domain-capabilities-os.h: libvirt domain capabilities OS
2 *
3 * Copyright (C) 2019 Red Hat, Inc.
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library. If not, see
17 * <http://www.gnu.org/licenses/>.
18 */
19
20 #if !defined(__LIBVIRT_GCONFIG_H__) && !defined(LIBVIRT_GCONFIG_BUILD)
21 #error "Only <libvirt-gconfig/libvirt-gconfig.h> can be included directly."
22 #endif
23
24 #ifndef __LIBVIRT_GCONFIG_DOMAIN_CAPABILITIES_OS_H__
25 #define __LIBVIRT_GCONFIG_DOMAIN_CAPABILITIES_OS_H__
26
27 G_BEGIN_DECLS
28
29 #define GVIR_CONFIG_TYPE_DOMAIN_CAPABILITIES_OS (gvir_config_domain_capabilities_os_get_type ())
30 #define GVIR_CONFIG_DOMAIN_CAPABILITIES_OS(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GVIR_CONFIG_TYPE_DOMAIN_CAPABILITIES_OS, GVirConfigDomainCapabilitiesOs))
31 #define GVIR_CONFIG_DOMAIN_CAPABILITIES_OS_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GVIR_CONFIG_TYPE_DOMAIN_CAPABILITIES_OS, GVirConfigDomainCapabilitiesOsClass))
32 #define GVIR_CONFIG_IS_DOMAIN_CAPABILITIES_OS(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GVIR_CONFIG_TYPE_DOMAIN_CAPABILITIES_OS))
33 #define GVIR_CONFIG_IS_DOMAIN_CAPABILITIES_OS_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GVIR_CONFIG_TYPE_DOMAIN_CAPABILITIES_OS))
34 #define GVIR_CONFIG_DOMAIN_CAPABILITIES_OS_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GVIR_CONFIG_TYPE_DOMAIN_CAPABILITIES_OS, GVirConfigDomainCapabilitiesOsClass))
35
36 typedef struct _GVirConfigDomainCapabilitiesOs GVirConfigDomainCapabilitiesOs;
37 typedef struct _GVirConfigDomainCapabilitiesOsPrivate GVirConfigDomainCapabilitiesOsPrivate;
38 typedef struct _GVirConfigDomainCapabilitiesOsClass GVirConfigDomainCapabilitiesOsClass;
39
40 struct _GVirConfigDomainCapabilitiesOs
41 {
42 GVirConfigObject parent;
43
44 GVirConfigDomainCapabilitiesOsPrivate *priv;
45
46 /* Do not add fields to this struct */
47 };
48
49 struct _GVirConfigDomainCapabilitiesOsClass
50 {
51 GVirConfigObjectClass parent_class;
52
53 GList *(*get_firmwares)(GVirConfigDomainCapabilitiesOs *os);
54
55 gpointer padding[19];
56 };
57
58 GType gvir_config_domain_capabilities_os_get_type(void);
59
60 GList *
61 gvir_config_domain_capabilities_os_get_firmwares(GVirConfigDomainCapabilitiesOs *os);
62
63 G_END_DECLS
64
65 #endif /* __LIBVIRT_GCONFIG_DOMAIN_CAPABILITIES_OS_H__ */
0 /*
1 * libvirt-gconfig-domain-capabilities.c: libvirt domain capabilities configuration
2 *
3 * Copyright (C) 2019 Red Hat, Inc.
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library. If not, see
17 * <http://www.gnu.org/licenses/>.
18 */
19
20 #include <config.h>
21
22 #include "libvirt-gconfig/libvirt-gconfig.h"
23 #include "libvirt-gconfig/libvirt-gconfig-private.h"
24
25 #define GVIR_CONFIG_DOMAIN_CAPABILITIES_GET_PRIVATE(obj) \
26 (G_TYPE_INSTANCE_GET_PRIVATE((obj), GVIR_CONFIG_TYPE_DOMAIN_CAPABILITIES, GVirConfigDomainCapabilitiesPrivate))
27
28 struct _GVirConfigDomainCapabilitiesPrivate
29 {
30 gboolean unused;
31 };
32
33 G_DEFINE_TYPE_WITH_PRIVATE(GVirConfigDomainCapabilities, gvir_config_domain_capabilities, GVIR_CONFIG_TYPE_OBJECT);
34
35 static void
36 gvir_config_domain_capabilities_class_init(GVirConfigDomainCapabilitiesClass *klass G_GNUC_UNUSED)
37 {
38 }
39
40
41 static void
42 gvir_config_domain_capabilities_init(GVirConfigDomainCapabilities *domain_caps)
43 {
44 domain_caps->priv = GVIR_CONFIG_DOMAIN_CAPABILITIES_GET_PRIVATE(domain_caps);
45 }
46
47
48 GVirConfigDomainCapabilities *
49 gvir_config_domain_capabilities_new(void)
50 {
51 GVirConfigObject *object;
52
53 object = gvir_config_object_new(GVIR_CONFIG_TYPE_DOMAIN_CAPABILITIES,
54 "domainCapabilities",
55 DATADIR "/libvirt/schemas/domaincaps.rng");
56 return GVIR_CONFIG_DOMAIN_CAPABILITIES(object);
57 }
58
59 GVirConfigDomainCapabilities *
60 gvir_config_domain_capabilities_new_from_xml(const gchar *xml,
61 GError **error)
62 {
63 GVirConfigObject *object;
64
65 object = gvir_config_object_new_from_xml(GVIR_CONFIG_TYPE_DOMAIN_CAPABILITIES,
66 "domainCapabilities",
67 DATADIR "/libvirt/schemas/domaincaps.rng",
68 xml, error);
69 return GVIR_CONFIG_DOMAIN_CAPABILITIES(object);
70 }
71
72 /**
73 * gvir_config_domain_capabilities_get_os:
74 * @domain_caps: a #GVirConfigDomainCapabilities
75 *
76 * Gets the @os associated with the @domain_caps.
77 *
78 * Returns: (transfer full): a new #GVirConfigDomainCapabilitiesOs.
79 */
80 GVirConfigDomainCapabilitiesOs *
81 gvir_config_domain_capabilities_get_os(GVirConfigDomainCapabilities *domain_caps)
82 {
83 GVirConfigObject *object;
84
85 g_return_val_if_fail(GVIR_CONFIG_IS_DOMAIN_CAPABILITIES(domain_caps), NULL);
86
87 object = gvir_config_object_get_child_with_type
88 (GVIR_CONFIG_OBJECT(domain_caps),
89 "os",
90 GVIR_CONFIG_TYPE_DOMAIN_CAPABILITIES_OS);
91
92 return GVIR_CONFIG_DOMAIN_CAPABILITIES_OS(object);
93 }
0 /*
1 * libvirt-gconfig-domain-capabilities.c: libvirt domain capabilities configuration
2 *
3 * Copyright (C) 2019 Red Hat, Inc.
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library. If not, see
17 * <http://www.gnu.org/licenses/>.
18 */
19
20 #if !defined(__LIBVIRT_GCONFIG_H__) && !defined(LIBVIRT_GCONFIG_BUILD)
21 #error "Only <libvirt-gconfig/libvirt-gconfig.h> can be included directly."
22 #endif
23
24 #ifndef __LIBVIRT_GCONFIG_DOMAIN_CAPABILITIES_H__
25 #define __LIBVIRT_GCONFIG_DOMAIN_CAPABILITIES_H__
26
27 #include "libvirt-gconfig/libvirt-gconfig-domain-capabilities-os.h"
28
29 G_BEGIN_DECLS
30
31 #define GVIR_CONFIG_TYPE_DOMAIN_CAPABILITIES (gvir_config_domain_capabilities_get_type ())
32 #define GVIR_CONFIG_DOMAIN_CAPABILITIES(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GVIR_CONFIG_TYPE_DOMAIN_CAPABILITIES, GVirConfigDomainCapabilities))
33 #define GVIR_CONFIG_DOMAIN_CAPABILITIES_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GVIR_CONFIG_TYPE_DOMAIN_CAPABILITIES, GVirConfigDomainCapabilitiesClass))
34 #define GVIR_CONFIG_IS_DOMAIN_CAPABILITIES(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GVIR_CONFIG_TYPE_DOMAIN_CAPABILITIES))
35 #define GVIR_CONFIG_IS_DOMAIN_CAPABILITIES_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GVIR_CONFIG_TYPE_DOMAIN_CAPABILITIES))
36 #define GVIR_CONFIG_DOMAIN_CAPABILITIES_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GVIR_CONFIG_TYPE_DOMAIN_CAPABILITIES, GVirConfigDomainCapabilitiesClass))
37
38 typedef struct _GVirConfigDomainCapabilities GVirConfigDomainCapabilities;
39 typedef struct _GVirConfigDomainCapabilitiesPrivate GVirConfigDomainCapabilitiesPrivate;
40 typedef struct _GVirConfigDomainCapabilitiesClass GVirConfigDomainCapabilitiesClass;
41
42 struct _GVirConfigDomainCapabilities
43 {
44 GVirConfigObject parent;
45
46 GVirConfigDomainCapabilitiesPrivate *priv;
47
48 /* Do not add fields to this struct */
49 };
50
51 struct _GVirConfigDomainCapabilitiesClass
52 {
53 GVirConfigObjectClass parent_class;
54
55 gpointer padding[20];
56 };
57
58 GType gvir_config_domain_capabilities_get_type(void);
59
60 GVirConfigDomainCapabilities *gvir_config_domain_capabilities_new(void);
61 GVirConfigDomainCapabilities *gvir_config_domain_capabilities_new_from_xml(const gchar *xml,
62 GError **error);
63 GVirConfigDomainCapabilitiesOs *gvir_config_domain_capabilities_get_os(GVirConfigDomainCapabilities *domain_caps);
64
65 G_END_DECLS
66
67 #endif /* __LIBVIRT_GCONFIG_DOMAIN_CAPABILITIES_H__ */
327327
328328 xmlNewProp(os_type_node, (xmlChar*)"machine", (xmlChar*)machine);
329329 }
330
331 void gvir_config_domain_os_set_firmware(GVirConfigDomainOs *os, GVirConfigDomainOsFirmware firmware)
332 {
333 xmlNodePtr node;
334 const gchar *firmware_str;
335
336 g_return_if_fail(GVIR_CONFIG_IS_DOMAIN_OS(os));
337
338 node = gvir_config_object_get_xml_node(GVIR_CONFIG_OBJECT(os));
339 g_return_if_fail(node != NULL);
340
341 firmware_str = gvir_config_genum_get_nick(GVIR_CONFIG_TYPE_DOMAIN_OS_FIRMWARE,
342 firmware);
343 g_return_if_fail(firmware_str != NULL);
344
345 xmlNewProp(node, (xmlChar*)"firmware", (xmlChar*)firmware_str);
346 }
347
348 GVirConfigDomainOsFirmware gvir_config_domain_os_get_firmware(GVirConfigDomainOs *os)
349 {
350 g_return_val_if_fail(GVIR_CONFIG_IS_DOMAIN_OS(os),
351 GVIR_CONFIG_DOMAIN_OS_FIRMWARE_BIOS);
352
353 return gvir_config_object_get_attribute_genum
354 (GVIR_CONFIG_OBJECT(os),
355 NULL, "firmware",
356 GVIR_CONFIG_TYPE_DOMAIN_OS_FIRMWARE,
357 GVIR_CONFIG_DOMAIN_OS_FIRMWARE_BIOS);
358 }
7676 GVIR_CONFIG_DOMAIN_OS_BOOT_DEVICE_NETWORK
7777 } GVirConfigDomainOsBootDevice;
7878
79 typedef enum {
80 GVIR_CONFIG_DOMAIN_OS_FIRMWARE_BIOS,
81 GVIR_CONFIG_DOMAIN_OS_FIRMWARE_EFI
82 } GVirConfigDomainOsFirmware;
83
7984 GType gvir_config_domain_os_get_type(void);
8085
8186 GVirConfigDomainOs *gvir_config_domain_os_new(void);
98103 GVirConfigDomainOsSmBiosMode mode);
99104 void gvir_config_domain_os_enable_boot_menu(GVirConfigDomainOs *os, gboolean enable);
100105 void gvir_config_domain_os_bios_enable_serial(GVirConfigDomainOs *os, gboolean enable);
106 GVirConfigDomainOsFirmware gvir_config_domain_os_get_firmware(GVirConfigDomainOs *os);
107 void gvir_config_domain_os_set_firmware(GVirConfigDomainOs *os,
108 GVirConfigDomainOsFirmware firmware);
101109
102110 G_END_DECLS
103111
6262 GVIR_CONFIG_DOMAIN_VIDEO_MODEL_XEN,
6363 GVIR_CONFIG_DOMAIN_VIDEO_MODEL_VBOX,
6464 GVIR_CONFIG_DOMAIN_VIDEO_MODEL_QXL,
65 GVIR_CONFIG_DOMAIN_VIDEO_MODEL_VIRTIO
65 GVIR_CONFIG_DOMAIN_VIDEO_MODEL_VIRTIO,
66 GVIR_CONFIG_DOMAIN_VIDEO_MODEL_BOCHS,
6667 } GVirConfigDomainVideoModel;
6768
6869 GType gvir_config_domain_video_get_type(void);
292292
293293 xmlbuf = xmlBufferCreate();
294294 if (xmlNodeDump(xmlbuf, node->doc, node, 0, 1) < 0)
295 return NULL;
295 xml = NULL;
296296 else
297297 xml = g_strndup((gchar *)xmlBufferContent(xmlbuf), xmlBufferLength(xmlbuf));
298298
108108 gvir_config_object_set_node_content(GVIR_CONFIG_OBJECT(target),
109109 "compat", compat);
110110 }
111
112 void gvir_config_storage_vol_target_set_features(GVirConfigStorageVolTarget *target,
113 guint64 features)
114 {
115 g_return_if_fail(GVIR_CONFIG_IS_STORAGE_VOL_TARGET(target));
116 g_return_if_fail((features & ~GVIR_CONFIG_STORAGE_VOL_TARGET_FEATURE_LAZY_REFCOUNT) == 0);
117
118 if ((features & GVIR_CONFIG_STORAGE_VOL_TARGET_FEATURE_LAZY_REFCOUNT) != 0) {
119 GVirConfigObject *features_node;
120 features_node = gvir_config_object_replace_child(GVIR_CONFIG_OBJECT(target), "features");
121 gvir_config_object_set_node_content(features_node, "lazy_refcount", "");
122 g_object_unref(features_node);
123 }
124 }
6868 const char *format);
6969 void gvir_config_storage_vol_target_set_permissions(GVirConfigStorageVolTarget *target,
7070 GVirConfigStoragePermissions *perms);
71 typedef enum {
72 GVIR_CONFIG_STORAGE_VOL_TARGET_FEATURE_LAZY_REFCOUNT = 1 << 0
73 } GVirConfigStorageVolTargetFeatures;
74
75 void gvir_config_storage_vol_target_set_features(GVirConfigStorageVolTarget *target,
76 guint64 features);
7177
7278 G_END_DECLS
7379
4242 #include <libvirt-gconfig/libvirt-gconfig-domain-address.h>
4343 #include <libvirt-gconfig/libvirt-gconfig-domain-address-pci.h>
4444 #include <libvirt-gconfig/libvirt-gconfig-domain-address-usb.h>
45 #include <libvirt-gconfig/libvirt-gconfig-domain-capabilities.h>
46 #include <libvirt-gconfig/libvirt-gconfig-domain-capabilities-os.h>
4547 #include <libvirt-gconfig/libvirt-gconfig-domain-chardev.h>
4648 #include <libvirt-gconfig/libvirt-gconfig-domain-chardev-source.h>
4749 #include <libvirt-gconfig/libvirt-gconfig-domain-chardev-source-pty.h>
771771 gvir_config_domain_set_custom_xml_ns_children;
772772 } LIBVIRT_GCONFIG_0.2.4;
773773
774 LIBVIRT_GCONFIG_3.0.0 {
775 global:
776 gvir_config_domain_capabilities_get_os;
777 gvir_config_domain_capabilities_get_type;
778 gvir_config_domain_capabilities_new;
779 gvir_config_domain_capabilities_new_from_xml;
780 gvir_config_domain_capabilities_os_get_firmwares;
781 gvir_config_domain_capabilities_os_get_type;
782 gvir_config_domain_os_firmware_get_type;
783 gvir_config_domain_os_get_firmware;
784 gvir_config_domain_os_set_firmware;
785 gvir_config_storage_vol_target_features_get_type;
786 gvir_config_storage_vol_target_set_features;
787 } LIBVIRT_GCONFIG_2.0.0;
788
774789 # .... define new API here using predicted next version number ....
0 # Makefile.in generated by automake 1.15.1 from Makefile.am.
0 # Makefile.in generated by automake 1.16.1 from Makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
9292 subdir = libvirt-gconfig/tests
9393 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
9494 am__aclocal_m4_deps = $(top_srcdir)/m4/glibtests.m4 \
95 $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
96 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
97 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
98 $(top_srcdir)/m4/manywarnings.m4 \
95 $(top_srcdir)/m4/gtk-doc.m4 $(top_srcdir)/m4/introspection.m4 \
96 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
97 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
98 $(top_srcdir)/m4/lt~obsolete.m4 \
99 $(top_srcdir)/m4/manywarnings.m4 $(top_srcdir)/m4/pkg.m4 \
99100 $(top_srcdir)/m4/virt-compile-warnings.m4 \
100 $(top_srcdir)/m4/virt-gettext.m4 $(top_srcdir)/m4/warnings.m4 \
101 $(top_srcdir)/m4/virt-nls.m4 $(top_srcdir)/m4/warnings.m4 \
101102 $(top_srcdir)/configure.ac
102103 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
103104 $(ACLOCAL_M4)
149150 am__v_at_1 =
150151 DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
151152 depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp
152 am__depfiles_maybe = depfiles
153 am__maybe_remake_depfiles = depfiles
154 am__depfiles_remade = ./$(DEPDIR)/test-capabilities-parse.Po \
155 ./$(DEPDIR)/test-domain-create.Po \
156 ./$(DEPDIR)/test-domain-parse.Po
153157 am__mv = mv -f
154158 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
155159 $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
201205 $(top_srcdir)/build-aux/depcomp
202206 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
203207 ACLOCAL = @ACLOCAL@
204 ALL_LINGUAS = @ALL_LINGUAS@
205208 AMTAR = @AMTAR@
206209 AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
207210 AR = @AR@
232235 EGREP = @EGREP@
233236 EXEEXT = @EXEEXT@
234237 FGREP = @FGREP@
235 GETTEXT_PACKAGE = @GETTEXT_PACKAGE@
236238 GIO2_CFLAGS = @GIO2_CFLAGS@
237239 GIO2_LIBS = @GIO2_LIBS@
238240 GLIB2_CFLAGS = @GLIB2_CFLAGS@
239241 GLIB2_LIBS = @GLIB2_LIBS@
240242 GLIB2_REQUIRED = @GLIB2_REQUIRED@
243 GLIB2_VERSION_SYMBOL = @GLIB2_VERSION_SYMBOL@
241244 GLIB_MKENUMS = @GLIB_MKENUMS@
242 GMSGFMT = @GMSGFMT@
243245 GOBJECT2_CFLAGS = @GOBJECT2_CFLAGS@
244246 GOBJECT2_LIBS = @GOBJECT2_LIBS@
245247 GREP = @GREP@
257259 INSTALL_PROGRAM = @INSTALL_PROGRAM@
258260 INSTALL_SCRIPT = @INSTALL_SCRIPT@
259261 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
260 INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
261 INTLTOOL_MERGE = @INTLTOOL_MERGE@
262 INTLTOOL_PERL = @INTLTOOL_PERL@
263 INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
264 INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@
265 INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@
266 INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@
267 INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@
268262 INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@
269263 INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@
270264 INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@
322316 SET_MAKE = @SET_MAKE@
323317 SHELL = @SHELL@
324318 STRIP = @STRIP@
325 USE_NLS = @USE_NLS@
326319 VAPIGEN = @VAPIGEN@
327320 VERSION = @VERSION@
328321 WARN_CFLAGS = @WARN_CFLAGS@
362355 install_sh = @install_sh@
363356 installed_test_metadir = @installed_test_metadir@
364357 installed_testdir = @installed_testdir@
365 intltool__v_merge_options_ = @intltool__v_merge_options_@
366 intltool__v_merge_options_0 = @intltool__v_merge_options_0@
367358 libdir = @libdir@
368359 libexecdir = @libexecdir@
369360 localedir = @localedir@
419410 *config.status*) \
420411 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
421412 *) \
422 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
423 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
413 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
414 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
424415 esac;
425416
426417 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
459450 distclean-compile:
460451 -rm -f *.tab.c
461452
462 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-capabilities-parse.Po@am__quote@
463 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-domain-create.Po@am__quote@
464 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-domain-parse.Po@am__quote@
453 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-capabilities-parse.Po@am__quote@ # am--include-marker
454 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-domain-create.Po@am__quote@ # am--include-marker
455 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-domain-parse.Po@am__quote@ # am--include-marker
456
457 $(am__depfiles_remade):
458 @$(MKDIR_P) $(@D)
459 @echo '# dummy' >$@-t && $(am__mv) $@-t $@
460
461 am--depfiles: $(am__depfiles_remade)
465462
466463 .c.o:
467464 @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
542539 distclean-tags:
543540 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
544541
545 distdir: $(DISTFILES)
542 distdir: $(BUILT_SOURCES)
543 $(MAKE) $(AM_MAKEFLAGS) distdir-am
544
545 distdir-am: $(DISTFILES)
546546 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
547547 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
548548 list='$(DISTFILES)'; \
612612 mostlyclean-am
613613
614614 distclean: distclean-am
615 -rm -rf ./$(DEPDIR)
615 -rm -f ./$(DEPDIR)/test-capabilities-parse.Po
616 -rm -f ./$(DEPDIR)/test-domain-create.Po
617 -rm -f ./$(DEPDIR)/test-domain-parse.Po
616618 -rm -f Makefile
617619 distclean-am: clean-am distclean-compile distclean-generic \
618620 distclean-tags
658660 installcheck-am:
659661
660662 maintainer-clean: maintainer-clean-am
661 -rm -rf ./$(DEPDIR)
663 -rm -f ./$(DEPDIR)/test-capabilities-parse.Po
664 -rm -f ./$(DEPDIR)/test-domain-create.Po
665 -rm -f ./$(DEPDIR)/test-domain-parse.Po
662666 -rm -f Makefile
663667 maintainer-clean-am: distclean-am maintainer-clean-generic
664668
679683
680684 .MAKE: install-am install-strip
681685
682 .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
683 clean-libtool clean-noinstPROGRAMS cscopelist-am ctags \
684 ctags-am distclean distclean-compile distclean-generic \
686 .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
687 clean-generic clean-libtool clean-noinstPROGRAMS cscopelist-am \
688 ctags ctags-am distclean distclean-compile distclean-generic \
685689 distclean-libtool distclean-tags distdir dvi dvi-am html \
686690 html-am info info-am install install-am install-data \
687691 install-data-am install-dvi install-dvi-am install-exec \
497497 gvir_config_storage_vol_target_set_format(vol_target, "qcow2");
498498 gvir_config_storage_vol_target_set_permissions(vol_target, perms);
499499 gvir_config_storage_vol_target_set_compat(vol_target, "1.1");
500 gvir_config_storage_vol_target_set_features(vol_target, GVIR_CONFIG_STORAGE_VOL_TARGET_FEATURE_LAZY_REFCOUNT);
500501 g_object_unref(G_OBJECT(perms));
501502 gvir_config_storage_vol_set_target(vol, vol_target);
502503 g_object_unref(G_OBJECT(vol_target));
1515 libvirt-glib-main.c
1616 libvirt_glib_1_0_la_CFLAGS = \
1717 -DLIBVIRT_GLIB_BUILD \
18 -DGLIB_VERSION_MIN_REQUIRED=$(GLIB2_VERSION_SYMBOL) \
19 -DGLIB_VERSION_MAX_ALLOWED=$(GLIB2_VERSION_SYMBOL) \
20 -DGETTEXT_PACKAGE="\"libvirt-glib\"" \
1821 -DG_LOG_DOMAIN="\"Libvirt.GLib\"" \
1922 -DLOCALEDIR="\"$(datadir)/locale\"" \
2023 $(COVERAGE_CFLAGS) \
0 # Makefile.in generated by automake 1.15.1 from Makefile.am.
0 # Makefile.in generated by automake 1.16.1 from Makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
9494 subdir = libvirt-glib
9595 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
9696 am__aclocal_m4_deps = $(top_srcdir)/m4/glibtests.m4 \
97 $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
98 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
99 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
100 $(top_srcdir)/m4/manywarnings.m4 \
97 $(top_srcdir)/m4/gtk-doc.m4 $(top_srcdir)/m4/introspection.m4 \
98 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
99 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
100 $(top_srcdir)/m4/lt~obsolete.m4 \
101 $(top_srcdir)/m4/manywarnings.m4 $(top_srcdir)/m4/pkg.m4 \
101102 $(top_srcdir)/m4/virt-compile-warnings.m4 \
102 $(top_srcdir)/m4/virt-gettext.m4 $(top_srcdir)/m4/warnings.m4 \
103 $(top_srcdir)/m4/virt-nls.m4 $(top_srcdir)/m4/warnings.m4 \
103104 $(top_srcdir)/configure.ac
104105 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
105106 $(ACLOCAL_M4)
169170 am__v_at_1 =
170171 DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
171172 depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp
172 am__depfiles_maybe = depfiles
173 am__maybe_remake_depfiles = depfiles
174 am__depfiles_remade = \
175 ./$(DEPDIR)/libvirt_glib_1_0_la-libvirt-glib-error.Plo \
176 ./$(DEPDIR)/libvirt_glib_1_0_la-libvirt-glib-event.Plo \
177 ./$(DEPDIR)/libvirt_glib_1_0_la-libvirt-glib-main.Plo
173178 am__mv = mv -f
174179 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
175180 $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
221226 $(top_srcdir)/build-aux/depcomp
222227 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
223228 ACLOCAL = @ACLOCAL@
224 ALL_LINGUAS = @ALL_LINGUAS@
225229 AMTAR = @AMTAR@
226230 AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
227231 AR = @AR@
252256 EGREP = @EGREP@
253257 EXEEXT = @EXEEXT@
254258 FGREP = @FGREP@
255 GETTEXT_PACKAGE = @GETTEXT_PACKAGE@
256259 GIO2_CFLAGS = @GIO2_CFLAGS@
257260 GIO2_LIBS = @GIO2_LIBS@
258261 GLIB2_CFLAGS = @GLIB2_CFLAGS@
259262 GLIB2_LIBS = @GLIB2_LIBS@
260263 GLIB2_REQUIRED = @GLIB2_REQUIRED@
264 GLIB2_VERSION_SYMBOL = @GLIB2_VERSION_SYMBOL@
261265 GLIB_MKENUMS = @GLIB_MKENUMS@
262 GMSGFMT = @GMSGFMT@
263266 GOBJECT2_CFLAGS = @GOBJECT2_CFLAGS@
264267 GOBJECT2_LIBS = @GOBJECT2_LIBS@
265268 GREP = @GREP@
277280 INSTALL_PROGRAM = @INSTALL_PROGRAM@
278281 INSTALL_SCRIPT = @INSTALL_SCRIPT@
279282 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
280 INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
281 INTLTOOL_MERGE = @INTLTOOL_MERGE@
282 INTLTOOL_PERL = @INTLTOOL_PERL@
283 INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
284 INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@
285 INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@
286 INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@
287 INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@
288283 INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@
289284 INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@
290285 INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@
342337 SET_MAKE = @SET_MAKE@
343338 SHELL = @SHELL@
344339 STRIP = @STRIP@
345 USE_NLS = @USE_NLS@
346340 VAPIGEN = @VAPIGEN@
347341 VERSION = @VERSION@
348342 WARN_CFLAGS = @WARN_CFLAGS@
382376 install_sh = @install_sh@
383377 installed_test_metadir = @installed_test_metadir@
384378 installed_testdir = @installed_testdir@
385 intltool__v_merge_options_ = @intltool__v_merge_options_@
386 intltool__v_merge_options_0 = @intltool__v_merge_options_0@
387379 libdir = @libdir@
388380 libexecdir = @libexecdir@
389381 localedir = @localedir@
420412
421413 libvirt_glib_1_0_la_CFLAGS = \
422414 -DLIBVIRT_GLIB_BUILD \
415 -DGLIB_VERSION_MIN_REQUIRED=$(GLIB2_VERSION_SYMBOL) \
416 -DGLIB_VERSION_MAX_ALLOWED=$(GLIB2_VERSION_SYMBOL) \
417 -DGETTEXT_PACKAGE="\"libvirt-glib\"" \
423418 -DG_LOG_DOMAIN="\"Libvirt.GLib\"" \
424419 -DLOCALEDIR="\"$(datadir)/locale\"" \
425420 $(COVERAGE_CFLAGS) \
484479 *config.status*) \
485480 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
486481 *) \
487 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
488 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
482 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
483 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
489484 esac;
490485
491486 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
541536 distclean-compile:
542537 -rm -f *.tab.c
543538
544 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_glib_1_0_la-libvirt-glib-error.Plo@am__quote@
545 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_glib_1_0_la-libvirt-glib-event.Plo@am__quote@
546 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_glib_1_0_la-libvirt-glib-main.Plo@am__quote@
539 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_glib_1_0_la-libvirt-glib-error.Plo@am__quote@ # am--include-marker
540 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_glib_1_0_la-libvirt-glib-event.Plo@am__quote@ # am--include-marker
541 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_glib_1_0_la-libvirt-glib-main.Plo@am__quote@ # am--include-marker
542
543 $(am__depfiles_remade):
544 @$(MKDIR_P) $(@D)
545 @echo '# dummy' >$@-t && $(am__mv) $@-t $@
546
547 am--depfiles: $(am__depfiles_remade)
547548
548549 .c.o:
549550 @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
708709 distclean-tags:
709710 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
710711
711 distdir: $(DISTFILES)
712 distdir: $(BUILT_SOURCES)
713 $(MAKE) $(AM_MAKEFLAGS) distdir-am
714
715 distdir-am: $(DISTFILES)
712716 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
713717 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
714718 list='$(DISTFILES)'; \
783787 mostlyclean-am
784788
785789 distclean: distclean-am
786 -rm -rf ./$(DEPDIR)
790 -rm -f ./$(DEPDIR)/libvirt_glib_1_0_la-libvirt-glib-error.Plo
791 -rm -f ./$(DEPDIR)/libvirt_glib_1_0_la-libvirt-glib-event.Plo
792 -rm -f ./$(DEPDIR)/libvirt_glib_1_0_la-libvirt-glib-main.Plo
787793 -rm -f Makefile
788794 distclean-am: clean-am distclean-compile distclean-generic \
789795 distclean-tags
830836 installcheck-am:
831837
832838 maintainer-clean: maintainer-clean-am
833 -rm -rf ./$(DEPDIR)
839 -rm -f ./$(DEPDIR)/libvirt_glib_1_0_la-libvirt-glib-error.Plo
840 -rm -f ./$(DEPDIR)/libvirt_glib_1_0_la-libvirt-glib-event.Plo
841 -rm -f ./$(DEPDIR)/libvirt_glib_1_0_la-libvirt-glib-main.Plo
834842 -rm -f Makefile
835843 maintainer-clean-am: distclean-am maintainer-clean-generic
836844
852860
853861 .MAKE: check-am install-am install-strip
854862
855 .PHONY: CTAGS GTAGS TAGS all all-am check check-am check-local clean \
856 clean-generic clean-libLTLIBRARIES clean-libtool cscopelist-am \
857 ctags ctags-am distclean distclean-compile distclean-generic \
858 distclean-libtool distclean-tags distdir dvi dvi-am html \
859 html-am info info-am install install-am install-data \
860 install-data-am install-dvi install-dvi-am install-exec \
861 install-exec-am install-girDATA install-html install-html-am \
862 install-info install-info-am install-libLTLIBRARIES \
863 install-libvirt_glib_1_0_laHEADERS install-man install-pdf \
864 install-pdf-am install-ps install-ps-am install-strip \
865 install-typelibDATA installcheck installcheck-am installdirs \
866 maintainer-clean maintainer-clean-generic mostlyclean \
867 mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
868 pdf pdf-am ps ps-am tags tags-am uninstall uninstall-am \
869 uninstall-girDATA uninstall-libLTLIBRARIES \
870 uninstall-libvirt_glib_1_0_laHEADERS uninstall-typelibDATA
863 .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am \
864 check-local clean clean-generic clean-libLTLIBRARIES \
865 clean-libtool cscopelist-am ctags ctags-am distclean \
866 distclean-compile distclean-generic distclean-libtool \
867 distclean-tags distdir dvi dvi-am html html-am info info-am \
868 install install-am install-data install-data-am install-dvi \
869 install-dvi-am install-exec install-exec-am install-girDATA \
870 install-html install-html-am install-info install-info-am \
871 install-libLTLIBRARIES install-libvirt_glib_1_0_laHEADERS \
872 install-man install-pdf install-pdf-am install-ps \
873 install-ps-am install-strip install-typelibDATA installcheck \
874 installcheck-am installdirs maintainer-clean \
875 maintainer-clean-generic mostlyclean mostlyclean-compile \
876 mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
877 tags tags-am uninstall uninstall-am uninstall-girDATA \
878 uninstall-libLTLIBRARIES uninstall-libvirt_glib_1_0_laHEADERS \
879 uninstall-typelibDATA
871880
872881 .PRECIOUS: Makefile
873882
109109 virFreeCallback ff;
110110 };
111111
112 GMutex *eventlock = NULL;
112 static GMutex *eventlock = NULL;
113113
114114 static int nextwatch = 1;
115115 static GPtrArray *handles;
1313 %define libvirt_version 1.2.5
1414
1515 Name: libvirt-glib
16 Version: 2.0.0
16 Version: 3.0.0
1717 Release: 1%{?dist}
1818 Summary: libvirt glib integration for events
1919 Group: Development/Libraries
3636 %if %{with_vala}
3737 BuildRequires: vala-tools
3838 %endif
39 BuildRequires: intltool
39 BuildRequires: gettext
4040
4141 %package devel
4242 Group: Development/Libraries
3636 %if %{with_vala}
3737 BuildRequires: vala-tools
3838 %endif
39 BuildRequires: intltool
39 BuildRequires: gettext
4040
4141 %package devel
4242 Group: Development/Libraries
6565 nodist_libvirt_gobject_1_0_la_SOURCES = \
6666 $(GOBJECT_GENERATED_FILES)
6767 libvirt_gobject_1_0_la_CFLAGS = \
68 -DGETTEXT_PACKAGE="\"libvirt-glib\"" \
6869 -DG_LOG_DOMAIN="\"Libvirt.GObject\"" \
6970 -DDATADIR="\"$(datadir)\"" \
7071 -DLIBVIRT_GOBJECT_BUILD \
72 -DGLIB_VERSION_MIN_REQUIRED=$(GLIB2_VERSION_SYMBOL) \
73 -DGLIB_VERSION_MAX_ALLOWED=$(GLIB2_VERSION_SYMBOL) \
7174 $(COVERAGE_CFLAGS) \
7275 -I$(top_srcdir) \
7376 -I$(top_builddir) \
0 # Makefile.in generated by automake 1.15.1 from Makefile.am.
0 # Makefile.in generated by automake 1.16.1 from Makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
9494 subdir = libvirt-gobject
9595 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
9696 am__aclocal_m4_deps = $(top_srcdir)/m4/glibtests.m4 \
97 $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
98 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
99 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
100 $(top_srcdir)/m4/manywarnings.m4 \
97 $(top_srcdir)/m4/gtk-doc.m4 $(top_srcdir)/m4/introspection.m4 \
98 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
99 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
100 $(top_srcdir)/m4/lt~obsolete.m4 \
101 $(top_srcdir)/m4/manywarnings.m4 $(top_srcdir)/m4/pkg.m4 \
101102 $(top_srcdir)/m4/virt-compile-warnings.m4 \
102 $(top_srcdir)/m4/virt-gettext.m4 $(top_srcdir)/m4/warnings.m4 \
103 $(top_srcdir)/m4/virt-nls.m4 $(top_srcdir)/m4/warnings.m4 \
103104 $(top_srcdir)/configure.ac
104105 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
105106 $(ACLOCAL_M4)
191192 am__v_at_1 =
192193 DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
193194 depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp
194 am__depfiles_maybe = depfiles
195 am__maybe_remake_depfiles = depfiles
196 am__depfiles_remade = \
197 ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-compat.Plo \
198 ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-connection.Plo \
199 ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-domain-device.Plo \
200 ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-domain-disk.Plo \
201 ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-domain-interface.Plo \
202 ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-domain-snapshot.Plo \
203 ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-domain.Plo \
204 ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-enums.Plo \
205 ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-input-stream.Plo \
206 ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-interface.Plo \
207 ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-main.Plo \
208 ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-manager.Plo \
209 ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-network-dhcp-lease.Plo \
210 ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-network-filter.Plo \
211 ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-network.Plo \
212 ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-node-device.Plo \
213 ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-output-stream.Plo \
214 ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-secret.Plo \
215 ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-storage-pool.Plo \
216 ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-storage-vol.Plo \
217 ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-stream.Plo
195218 am__mv = mv -f
196219 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
197220 $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
245268 $(top_srcdir)/build-aux/depcomp
246269 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
247270 ACLOCAL = @ACLOCAL@
248 ALL_LINGUAS = @ALL_LINGUAS@
249271 AMTAR = @AMTAR@
250272 AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
251273 AR = @AR@
276298 EGREP = @EGREP@
277299 EXEEXT = @EXEEXT@
278300 FGREP = @FGREP@
279 GETTEXT_PACKAGE = @GETTEXT_PACKAGE@
280301 GIO2_CFLAGS = @GIO2_CFLAGS@
281302 GIO2_LIBS = @GIO2_LIBS@
282303 GLIB2_CFLAGS = @GLIB2_CFLAGS@
283304 GLIB2_LIBS = @GLIB2_LIBS@
284305 GLIB2_REQUIRED = @GLIB2_REQUIRED@
306 GLIB2_VERSION_SYMBOL = @GLIB2_VERSION_SYMBOL@
285307 GLIB_MKENUMS = @GLIB_MKENUMS@
286 GMSGFMT = @GMSGFMT@
287308 GOBJECT2_CFLAGS = @GOBJECT2_CFLAGS@
288309 GOBJECT2_LIBS = @GOBJECT2_LIBS@
289310 GREP = @GREP@
301322 INSTALL_PROGRAM = @INSTALL_PROGRAM@
302323 INSTALL_SCRIPT = @INSTALL_SCRIPT@
303324 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
304 INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
305 INTLTOOL_MERGE = @INTLTOOL_MERGE@
306 INTLTOOL_PERL = @INTLTOOL_PERL@
307 INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
308 INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@
309 INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@
310 INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@
311 INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@
312325 INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@
313326 INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@
314327 INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@
366379 SET_MAKE = @SET_MAKE@
367380 SHELL = @SHELL@
368381 STRIP = @STRIP@
369 USE_NLS = @USE_NLS@
370382 VAPIGEN = @VAPIGEN@
371383 VERSION = @VERSION@
372384 WARN_CFLAGS = @WARN_CFLAGS@
406418 install_sh = @install_sh@
407419 installed_test_metadir = @installed_test_metadir@
408420 installed_testdir = @installed_testdir@
409 intltool__v_merge_options_ = @intltool__v_merge_options_@
410 intltool__v_merge_options_0 = @intltool__v_merge_options_0@
411421 libdir = @libdir@
412422 libexecdir = @libexecdir@
413423 localedir = @localedir@
498508 $(GOBJECT_GENERATED_FILES)
499509
500510 libvirt_gobject_1_0_la_CFLAGS = \
511 -DGETTEXT_PACKAGE="\"libvirt-glib\"" \
501512 -DG_LOG_DOMAIN="\"Libvirt.GObject\"" \
502513 -DDATADIR="\"$(datadir)\"" \
503514 -DLIBVIRT_GOBJECT_BUILD \
515 -DGLIB_VERSION_MIN_REQUIRED=$(GLIB2_VERSION_SYMBOL) \
516 -DGLIB_VERSION_MAX_ALLOWED=$(GLIB2_VERSION_SYMBOL) \
504517 $(COVERAGE_CFLAGS) \
505518 -I$(top_srcdir) \
506519 -I$(top_builddir) \
587600 *config.status*) \
588601 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
589602 *) \
590 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
591 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
603 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
604 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
592605 esac;
593606
594607 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
644657 distclean-compile:
645658 -rm -f *.tab.c
646659
647 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-compat.Plo@am__quote@
648 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-connection.Plo@am__quote@
649 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-domain-device.Plo@am__quote@
650 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-domain-disk.Plo@am__quote@
651 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-domain-interface.Plo@am__quote@
652 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-domain-snapshot.Plo@am__quote@
653 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-domain.Plo@am__quote@
654 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-enums.Plo@am__quote@
655 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-input-stream.Plo@am__quote@
656 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-interface.Plo@am__quote@
657 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-main.Plo@am__quote@
658 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-manager.Plo@am__quote@
659 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-network-dhcp-lease.Plo@am__quote@
660 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-network-filter.Plo@am__quote@
661 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-network.Plo@am__quote@
662 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-node-device.Plo@am__quote@
663 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-output-stream.Plo@am__quote@
664 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-secret.Plo@am__quote@
665 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-storage-pool.Plo@am__quote@
666 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-storage-vol.Plo@am__quote@
667 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-stream.Plo@am__quote@
660 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-compat.Plo@am__quote@ # am--include-marker
661 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-connection.Plo@am__quote@ # am--include-marker
662 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-domain-device.Plo@am__quote@ # am--include-marker
663 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-domain-disk.Plo@am__quote@ # am--include-marker
664 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-domain-interface.Plo@am__quote@ # am--include-marker
665 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-domain-snapshot.Plo@am__quote@ # am--include-marker
666 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-domain.Plo@am__quote@ # am--include-marker
667 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-enums.Plo@am__quote@ # am--include-marker
668 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-input-stream.Plo@am__quote@ # am--include-marker
669 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-interface.Plo@am__quote@ # am--include-marker
670 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-main.Plo@am__quote@ # am--include-marker
671 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-manager.Plo@am__quote@ # am--include-marker
672 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-network-dhcp-lease.Plo@am__quote@ # am--include-marker
673 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-network-filter.Plo@am__quote@ # am--include-marker
674 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-network.Plo@am__quote@ # am--include-marker
675 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-node-device.Plo@am__quote@ # am--include-marker
676 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-output-stream.Plo@am__quote@ # am--include-marker
677 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-secret.Plo@am__quote@ # am--include-marker
678 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-storage-pool.Plo@am__quote@ # am--include-marker
679 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-storage-vol.Plo@am__quote@ # am--include-marker
680 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-stream.Plo@am__quote@ # am--include-marker
681
682 $(am__depfiles_remade):
683 @$(MKDIR_P) $(@D)
684 @echo '# dummy' >$@-t && $(am__mv) $@-t $@
685
686 am--depfiles: $(am__depfiles_remade)
668687
669688 .c.o:
670689 @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
976995 distclean-tags:
977996 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
978997
979 distdir: $(DISTFILES)
998 distdir: $(BUILT_SOURCES)
999 $(MAKE) $(AM_MAKEFLAGS) distdir-am
1000
1001 distdir-am: $(DISTFILES)
9801002 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
9811003 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
9821004 list='$(DISTFILES)'; \
10541076 mostlyclean-am
10551077
10561078 distclean: distclean-am
1057 -rm -rf ./$(DEPDIR)
1079 -rm -f ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-compat.Plo
1080 -rm -f ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-connection.Plo
1081 -rm -f ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-domain-device.Plo
1082 -rm -f ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-domain-disk.Plo
1083 -rm -f ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-domain-interface.Plo
1084 -rm -f ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-domain-snapshot.Plo
1085 -rm -f ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-domain.Plo
1086 -rm -f ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-enums.Plo
1087 -rm -f ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-input-stream.Plo
1088 -rm -f ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-interface.Plo
1089 -rm -f ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-main.Plo
1090 -rm -f ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-manager.Plo
1091 -rm -f ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-network-dhcp-lease.Plo
1092 -rm -f ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-network-filter.Plo
1093 -rm -f ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-network.Plo
1094 -rm -f ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-node-device.Plo
1095 -rm -f ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-output-stream.Plo
1096 -rm -f ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-secret.Plo
1097 -rm -f ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-storage-pool.Plo
1098 -rm -f ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-storage-vol.Plo
1099 -rm -f ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-stream.Plo
10581100 -rm -f Makefile
10591101 distclean-am: clean-am distclean-compile distclean-generic \
10601102 distclean-tags
11021144 installcheck-am:
11031145
11041146 maintainer-clean: maintainer-clean-am
1105 -rm -rf ./$(DEPDIR)
1147 -rm -f ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-compat.Plo
1148 -rm -f ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-connection.Plo
1149 -rm -f ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-domain-device.Plo
1150 -rm -f ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-domain-disk.Plo
1151 -rm -f ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-domain-interface.Plo
1152 -rm -f ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-domain-snapshot.Plo
1153 -rm -f ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-domain.Plo
1154 -rm -f ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-enums.Plo
1155 -rm -f ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-input-stream.Plo
1156 -rm -f ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-interface.Plo
1157 -rm -f ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-main.Plo
1158 -rm -f ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-manager.Plo
1159 -rm -f ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-network-dhcp-lease.Plo
1160 -rm -f ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-network-filter.Plo
1161 -rm -f ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-network.Plo
1162 -rm -f ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-node-device.Plo
1163 -rm -f ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-output-stream.Plo
1164 -rm -f ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-secret.Plo
1165 -rm -f ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-storage-pool.Plo
1166 -rm -f ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-storage-vol.Plo
1167 -rm -f ./$(DEPDIR)/libvirt_gobject_1_0_la-libvirt-gobject-stream.Plo
11061168 -rm -f Makefile
11071169 maintainer-clean-am: distclean-am maintainer-clean-generic
11081170
11261188
11271189 .MAKE: all check check-am install install-am install-strip
11281190
1129 .PHONY: CTAGS GTAGS TAGS all all-am check check-am check-local clean \
1130 clean-generic clean-libLTLIBRARIES clean-libtool cscopelist-am \
1131 ctags ctags-am distclean distclean-compile distclean-generic \
1132 distclean-libtool distclean-tags distdir dvi dvi-am html \
1133 html-am info info-am install install-am install-data \
1134 install-data-am install-dvi install-dvi-am install-exec \
1135 install-exec-am install-girDATA install-html install-html-am \
1136 install-info install-info-am install-libLTLIBRARIES \
1137 install-libvirt_gobject_1_0_laHEADERS install-man \
1138 install-nodist_libvirt_gobject_1_0_laHEADERS install-pdf \
1139 install-pdf-am install-ps install-ps-am install-strip \
1140 install-typelibDATA installcheck installcheck-am installdirs \
1141 maintainer-clean maintainer-clean-generic mostlyclean \
1142 mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
1143 pdf pdf-am ps ps-am tags tags-am uninstall uninstall-am \
1144 uninstall-girDATA uninstall-libLTLIBRARIES \
1191 .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am \
1192 check-local clean clean-generic clean-libLTLIBRARIES \
1193 clean-libtool cscopelist-am ctags ctags-am distclean \
1194 distclean-compile distclean-generic distclean-libtool \
1195 distclean-tags distdir dvi dvi-am html html-am info info-am \
1196 install install-am install-data install-data-am install-dvi \
1197 install-dvi-am install-exec install-exec-am install-girDATA \
1198 install-html install-html-am install-info install-info-am \
1199 install-libLTLIBRARIES install-libvirt_gobject_1_0_laHEADERS \
1200 install-man install-nodist_libvirt_gobject_1_0_laHEADERS \
1201 install-pdf install-pdf-am install-ps install-ps-am \
1202 install-strip install-typelibDATA installcheck installcheck-am \
1203 installdirs maintainer-clean maintainer-clean-generic \
1204 mostlyclean mostlyclean-compile mostlyclean-generic \
1205 mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \
1206 uninstall-am uninstall-girDATA uninstall-libLTLIBRARIES \
11451207 uninstall-libvirt_gobject_1_0_laHEADERS \
11461208 uninstall-nodist_libvirt_gobject_1_0_laHEADERS \
11471209 uninstall-typelibDATA
19981998 GVirConfigStoragePool *conf,
19991999 guint flags,
20002000 GError **err) {
2001 const gchar *xml;
2001 gchar *xml;
20022002 virStoragePoolPtr handle;
20032003 GVirConnectionPrivate *priv;
20042004
20112011 g_return_val_if_fail(xml != NULL, NULL);
20122012
20132013 priv = conn->priv;
2014 if (!(handle = virStoragePoolDefineXML(priv->conn, xml, flags))) {
2014 handle = virStoragePoolDefineXML(priv->conn, xml, flags);
2015 g_free(xml);
2016 if (!handle) {
20152017 gvir_set_error_literal(err, GVIR_CONNECTION_ERROR,
20162018 flags,
20172019 _("Failed to create storage pool"));
20752077 }
20762078
20772079 /**
2080 * gvir_connection_get_domain_capabilities:
2081 * @conn: a #GVirConnection
2082 * @emulatorbin: (allow-none): path to emulator
2083 * @arch: (allow-none): domain architecture
2084 * @machine: (allow-none): machine type
2085 * @virttype: (allow-none): virtualization type
2086 * @flags: extra flags; not used yet, so callers should always pass 0
2087 * @err: return location for any #GError
2088 *
2089 * Return value: (transfer full): a #GVirConfigDomainCapabilities or NULL.
2090 * The return object should be unreffed with g_object_unref() when no longer
2091 * needed.
2092 */
2093 GVirConfigDomainCapabilities *
2094 gvir_connection_get_domain_capabilities(GVirConnection *conn,
2095 const gchar *emulatorbin,
2096 const gchar *arch,
2097 const gchar *machine,
2098 const gchar *virttype,
2099 guint flags,
2100 GError **err)
2101 {
2102 GVirConfigDomainCapabilities *domain_caps;
2103 gchar *domain_caps_xml;
2104
2105 g_return_val_if_fail(GVIR_IS_CONNECTION(conn), NULL);
2106 g_return_val_if_fail(err == NULL || *err == NULL, NULL);
2107 g_return_val_if_fail(conn->priv->conn, NULL);
2108
2109 domain_caps_xml = virConnectGetDomainCapabilities(conn->priv->conn,
2110 emulatorbin,
2111 arch,
2112 machine,
2113 virttype,
2114 flags);
2115 if (domain_caps_xml == NULL) {
2116 gvir_set_error_literal(err, GVIR_CONNECTION_ERROR,
2117 0,
2118 _("Unable to get domain capabilities"));
2119 return NULL;
2120 }
2121
2122 domain_caps = gvir_config_domain_capabilities_new_from_xml(domain_caps_xml, err);
2123 free(domain_caps_xml);
2124
2125 return domain_caps;
2126 }
2127
2128 typedef struct {
2129 gchar *emulatorbin;
2130 gchar *arch;
2131 gchar *machine;
2132 gchar *virttype;
2133 guint flags;
2134 } GetDomainCapabilitiesData;
2135
2136 static void get_domain_capabilities_data_free(GetDomainCapabilitiesData *data)
2137 {
2138 g_free(data->emulatorbin);
2139 g_free(data->arch);
2140 g_free(data->machine);
2141 g_free(data->virttype);
2142 g_slice_free(GetDomainCapabilitiesData, data);
2143 }
2144
2145 static void
2146 gvir_connection_get_domain_capabilities_helper(GTask *task,
2147 gpointer object,
2148 gpointer task_data G_GNUC_UNUSED,
2149 GCancellable *cancellable G_GNUC_UNUSED)
2150 {
2151 GVirConnection *conn = GVIR_CONNECTION(object);
2152 GetDomainCapabilitiesData *data;
2153 GError *err = NULL;
2154 GVirConfigDomainCapabilities *domain_caps;
2155
2156 data = (GetDomainCapabilitiesData *)task_data;
2157
2158 domain_caps = gvir_connection_get_domain_capabilities(conn,
2159 data->emulatorbin,
2160 data->arch,
2161 data->machine,
2162 data->virttype,
2163 data->flags,
2164 &err);
2165 if (domain_caps == NULL) {
2166 g_task_return_error(task, err);
2167
2168 return;
2169 }
2170
2171 g_task_return_pointer(task, domain_caps, g_object_unref);
2172 }
2173
2174 /**
2175 * gvir_connection_get_domain_capabilities_async:
2176 * @conn: a #GVirConnection
2177 * @emulatorbin: (allow-none): path to emulator
2178 * @arch: (allow-none): domain architecture
2179 * @machine: (allow-none): machine type
2180 * @virttype: (allow-none): virtualization type
2181 * @flags: extra flags; not used yet, so callers should always pass 0
2182 * @cancellable: (allow-none)(transfer none): cancellation object
2183 * @callback: (scope async): completion callback
2184 * @user_data: (closure): opaque data for callback
2185 */
2186 void gvir_connection_get_domain_capabilities_async(GVirConnection *conn,
2187 const gchar *emulatorbin,
2188 const gchar *arch,
2189 const gchar *machine,
2190 const gchar *virttype,
2191 guint flags,
2192 GCancellable *cancellable,
2193 GAsyncReadyCallback callback,
2194 gpointer user_data)
2195 {
2196 GTask *task;
2197 GetDomainCapabilitiesData *data;
2198
2199 g_return_if_fail(GVIR_IS_CONNECTION(conn));
2200 g_return_if_fail((cancellable == NULL) || G_IS_CANCELLABLE(cancellable));
2201
2202 data = g_slice_new0(GetDomainCapabilitiesData);
2203 data->emulatorbin = g_strdup(emulatorbin);
2204 data->arch = g_strdup(arch);
2205 data->machine = g_strdup(machine);
2206 data->virttype = g_strdup(virttype);
2207 data->flags = flags;
2208
2209 task = g_task_new(G_OBJECT(conn),
2210 cancellable,
2211 callback,
2212 user_data);
2213 g_task_set_source_tag(task,
2214 gvir_connection_get_domain_capabilities_async);
2215 g_task_set_task_data(task,
2216 data,
2217 (GDestroyNotify)get_domain_capabilities_data_free);
2218 g_task_run_in_thread(task,
2219 gvir_connection_get_domain_capabilities_helper);
2220 g_object_unref(task);
2221 }
2222
2223 /**
2224 * gvir_connection_get_domain_capabilities_finish:
2225 * @conn: a #GVirConnection
2226 * @result: (transfer none): async method result
2227 *
2228 * Return value: (transfer full): a #GVirConfigDomainCapabilities or NULL.
2229 * The returned object should be unreffed with g_object_unref() when no
2230 * longer needed.
2231 */
2232 GVirConfigDomainCapabilities *
2233 gvir_connection_get_domain_capabilities_finish(GVirConnection *conn,
2234 GAsyncResult *result,
2235 GError **err)
2236 {
2237 g_return_val_if_fail(GVIR_IS_CONNECTION(conn), NULL);
2238 g_return_val_if_fail(g_task_is_valid(result, G_OBJECT(conn)),
2239 NULL);
2240 g_return_val_if_fail(g_task_get_source_tag(G_TASK(result)) ==
2241 gvir_connection_get_domain_capabilities_async,
2242 NULL);
2243
2244 return g_task_propagate_pointer(G_TASK(result), err);
2245 }
2246
2247 /**
20782248 * gvir_connection_get_capabilities:
20792249 * @conn: a #GVirConnection
20802250 * @err: return location for any #GError
21742344 NULL);
21752345 g_return_val_if_fail(g_task_get_source_tag(G_TASK(result)) ==
21762346 gvir_connection_get_capabilities_async,
2177 FALSE);
2347 NULL);
21782348
21792349 return g_task_propagate_pointer(G_TASK(result), err);
21802350 }
254254 gvir_connection_restore_domain_from_file_finish(GVirConnection *conn,
255255 GAsyncResult *result,
256256 GError **err);
257
258 GVirConfigDomainCapabilities *gvir_connection_get_domain_capabilities(GVirConnection *conn,
259 const gchar *emulatorbin,
260 const gchar *arch,
261 const gchar *machine,
262 const gchar *virttype,
263 guint flags,
264 GError **err);
265 void gvir_connection_get_domain_capabilities_async(GVirConnection *conn,
266 const gchar *emulatorbin,
267 const gchar *arch,
268 const gchar *machine,
269 const gchar *virttype,
270 guint flags,
271 GCancellable *cancellable,
272 GAsyncReadyCallback callback,
273 gpointer user_data);
274 GVirConfigDomainCapabilities *
275 gvir_connection_get_domain_capabilities_finish(GVirConnection *conn,
276 GAsyncResult *result,
277 GError **err);
278
257279 G_END_DECLS
258280
259281 #endif /* __LIBVIRT_GOBJECT_CONNECTION_H__ */
120120 "The lease handle",
121121 G_PARAM_READWRITE |
122122 G_PARAM_CONSTRUCT_ONLY |
123 G_PARAM_PRIVATE |
124123 G_PARAM_STATIC_STRINGS));
125124 }
126125
310310 gvir_domain_set_time_finish;
311311 } LIBVIRT_GOBJECT_0.2.2;
312312
313
314 LIBVIRT_GOBJECT_3.0.0 {
315 global:
316 gvir_connection_get_domain_capabilities;
317 gvir_connection_get_domain_capabilities_async;
318 gvir_connection_get_domain_capabilities_finish;
319 } LIBVIRT_GOBJECT_0.2.3;
320
313321 # .... define new API here using predicted next version number ....
0 # -*- mode: autoconf -*-
1 #
2 # gtk-doc.m4 - configure macro to check for gtk-doc
3 # Copyright (C) 2003 James Henstridge
4 # 2007-2017 Stefan Sauer
5 #
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18 #
19 # As a special exception, the above copyright owner gives unlimited
20 # permission to copy, distribute and modify the configure scripts that
21 # are the output of Autoconf when processing the Macro. You need not
22 # follow the terms of the GNU General Public License when using or
23 # distributing such scripts, even though portions of the text of the
24 # Macro appear in them. The GNU General Public License (GPL) does govern
25 # all other use of the material that constitutes the Autoconf Macro.
26
27 # serial 2
28
29 dnl Usage:
30 dnl GTK_DOC_CHECK([minimum-gtk-doc-version])
31 AC_DEFUN([GTK_DOC_CHECK],
32 [
33 AC_REQUIRE([PKG_PROG_PKG_CONFIG])
34 AC_BEFORE([AC_PROG_LIBTOOL],[$0])dnl setup libtool first
35 AC_BEFORE([AM_PROG_LIBTOOL],[$0])dnl setup libtool first
36
37 ifelse([$1],[],[gtk_doc_requires="gtk-doc"],[gtk_doc_requires="gtk-doc >= $1"])
38 AC_MSG_CHECKING([for gtk-doc])
39 PKG_CHECK_EXISTS([$gtk_doc_requires],[have_gtk_doc=yes],[have_gtk_doc=no])
40 AC_MSG_RESULT($have_gtk_doc)
41
42 if test "$have_gtk_doc" = "no"; then
43 AC_MSG_WARN([
44 You will not be able to create source packages with 'make dist'
45 because $gtk_doc_requires is not found.])
46 fi
47
48 dnl check for tools we added during development
49 dnl Use AC_CHECK_PROG to avoid the check target using an absolute path that
50 dnl may not be writable by the user. Currently, automake requires that the
51 dnl test name must end in '.test'.
52 dnl https://bugzilla.gnome.org/show_bug.cgi?id=701638
53 AC_CHECK_PROG([GTKDOC_CHECK],[gtkdoc-check],[gtkdoc-check.test])
54 AC_PATH_PROG([GTKDOC_CHECK_PATH],[gtkdoc-check])
55 AC_PATH_PROGS([GTKDOC_REBASE],[gtkdoc-rebase],[true])
56 AC_PATH_PROG([GTKDOC_MKPDF],[gtkdoc-mkpdf])
57
58 dnl for overriding the documentation installation directory
59 AC_ARG_WITH([html-dir],
60 AS_HELP_STRING([--with-html-dir=PATH], [path to installed docs]),,
61 [with_html_dir='${datadir}/gtk-doc/html'])
62 HTML_DIR="$with_html_dir"
63 AC_SUBST([HTML_DIR])
64
65 dnl enable/disable documentation building
66 AC_ARG_ENABLE([gtk-doc],
67 AS_HELP_STRING([--enable-gtk-doc],
68 [use gtk-doc to build documentation [[default=no]]]),,
69 [enable_gtk_doc=no])
70
71 AC_MSG_CHECKING([whether to build gtk-doc documentation])
72 AC_MSG_RESULT($enable_gtk_doc)
73
74 if test "x$enable_gtk_doc" = "xyes" && test "$have_gtk_doc" = "no"; then
75 AC_MSG_ERROR([
76 You must have $gtk_doc_requires installed to build documentation for
77 $PACKAGE_NAME. Please install gtk-doc or disable building the
78 documentation by adding '--disable-gtk-doc' to '[$]0'.])
79 fi
80
81 dnl don't check for glib if we build glib
82 if test "x$PACKAGE_NAME" != "xglib"; then
83 dnl don't fail if someone does not have glib
84 PKG_CHECK_MODULES(GTKDOC_DEPS, glib-2.0 >= 2.10.0 gobject-2.0 >= 2.10.0,,[:])
85 fi
86
87 dnl enable/disable output formats
88 AC_ARG_ENABLE([gtk-doc-html],
89 AS_HELP_STRING([--enable-gtk-doc-html],
90 [build documentation in html format [[default=yes]]]),,
91 [enable_gtk_doc_html=yes])
92 AC_ARG_ENABLE([gtk-doc-pdf],
93 AS_HELP_STRING([--enable-gtk-doc-pdf],
94 [build documentation in pdf format [[default=no]]]),,
95 [enable_gtk_doc_pdf=no])
96
97 if test -z "$GTKDOC_MKPDF"; then
98 enable_gtk_doc_pdf=no
99 fi
100
101 if test -z "$AM_DEFAULT_VERBOSITY"; then
102 AM_DEFAULT_VERBOSITY=1
103 fi
104 AC_SUBST([AM_DEFAULT_VERBOSITY])
105
106 AM_CONDITIONAL([HAVE_GTK_DOC], [test x$have_gtk_doc = xyes])
107 AM_CONDITIONAL([ENABLE_GTK_DOC], [test x$enable_gtk_doc = xyes])
108 AM_CONDITIONAL([GTK_DOC_BUILD_HTML], [test x$enable_gtk_doc_html = xyes])
109 AM_CONDITIONAL([GTK_DOC_BUILD_PDF], [test x$enable_gtk_doc_pdf = xyes])
110 AM_CONDITIONAL([GTK_DOC_USE_LIBTOOL], [test -n "$LIBTOOL"])
111 AM_CONDITIONAL([GTK_DOC_USE_REBASE], [test -n "$GTKDOC_REBASE"])
112 ])
+0
-212
m4/intltool.m4 less more
0 ## intltool.m4 - Configure intltool for the target system. -*-Shell-script-*-
1 ## Copyright (C) 2001 Eazel, Inc.
2 ## Author: Maciej Stachowiak <mjs@noisehavoc.org>
3 ## Kenneth Christiansen <kenneth@gnu.org>
4 ##
5 ## This program is free software; you can redistribute it and/or modify
6 ## it under the terms of the GNU General Public License as published by
7 ## the Free Software Foundation; either version 2 of the License, or
8 ## (at your option) any later version.
9 ##
10 ## This program is distributed in the hope that it will be useful, but
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 ## General Public License for more details.
14 ##
15 ## You should have received a copy of the GNU General Public License
16 ## along with this program; if not, write to the Free Software
17 ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 ##
19 ## As a special exception to the GNU General Public License, if you
20 ## distribute this file as part of a program that contains a
21 ## configuration script generated by Autoconf, you may include it under
22 ## the same distribution terms that you use for the rest of that program.
23
24 dnl IT_PROG_INTLTOOL([MINIMUM-VERSION], [no-xml])
25 # serial 42 IT_PROG_INTLTOOL
26 AC_DEFUN([IT_PROG_INTLTOOL], [
27 AC_PREREQ([2.50])dnl
28 AC_REQUIRE([AM_NLS])dnl
29
30 case "$am__api_version" in
31 1.[01234])
32 AC_MSG_ERROR([Automake 1.5 or newer is required to use intltool])
33 ;;
34 *)
35 ;;
36 esac
37
38 INTLTOOL_REQUIRED_VERSION_AS_INT=`echo $1 | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'`
39 INTLTOOL_APPLIED_VERSION=`intltool-update --version | head -1 | cut -d" " -f3`
40 INTLTOOL_APPLIED_VERSION_AS_INT=`echo $INTLTOOL_APPLIED_VERSION | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'`
41 if test -n "$1"; then
42 AC_MSG_CHECKING([for intltool >= $1])
43 AC_MSG_RESULT([$INTLTOOL_APPLIED_VERSION found])
44 test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge "$INTLTOOL_REQUIRED_VERSION_AS_INT" ||
45 AC_MSG_ERROR([Your intltool is too old. You need intltool $1 or later.])
46 fi
47
48 AC_PATH_PROG(INTLTOOL_UPDATE, [intltool-update])
49 AC_PATH_PROG(INTLTOOL_MERGE, [intltool-merge])
50 AC_PATH_PROG(INTLTOOL_EXTRACT, [intltool-extract])
51 if test -z "$INTLTOOL_UPDATE" -o -z "$INTLTOOL_MERGE" -o -z "$INTLTOOL_EXTRACT"; then
52 AC_MSG_ERROR([The intltool scripts were not found. Please install intltool.])
53 fi
54
55 if test -z "$AM_DEFAULT_VERBOSITY"; then
56 AM_DEFAULT_VERBOSITY=1
57 fi
58 AC_SUBST([AM_DEFAULT_VERBOSITY])
59
60 INTLTOOL_V_MERGE='$(INTLTOOL__v_MERGE_$(V))'
61 INTLTOOL__v_MERGE_='$(INTLTOOL__v_MERGE_$(AM_DEFAULT_VERBOSITY))'
62 INTLTOOL__v_MERGE_0='@echo " ITMRG " [$]@;'
63 AC_SUBST(INTLTOOL_V_MERGE)
64 AC_SUBST(INTLTOOL__v_MERGE_)
65 AC_SUBST(INTLTOOL__v_MERGE_0)
66
67 INTLTOOL_V_MERGE_OPTIONS='$(intltool__v_merge_options_$(V))'
68 intltool__v_merge_options_='$(intltool__v_merge_options_$(AM_DEFAULT_VERBOSITY))'
69 intltool__v_merge_options_0='-q'
70 AC_SUBST(INTLTOOL_V_MERGE_OPTIONS)
71 AC_SUBST(intltool__v_merge_options_)
72 AC_SUBST(intltool__v_merge_options_0)
73
74 INTLTOOL_DESKTOP_RULE='%.desktop: %.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
75 INTLTOOL_DIRECTORY_RULE='%.directory: %.directory.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
76 INTLTOOL_KEYS_RULE='%.keys: %.keys.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -k -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
77 INTLTOOL_PROP_RULE='%.prop: %.prop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
78 INTLTOOL_OAF_RULE='%.oaf: %.oaf.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -o -p $(top_srcdir)/po $< [$]@'
79 INTLTOOL_PONG_RULE='%.pong: %.pong.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
80 INTLTOOL_SERVER_RULE='%.server: %.server.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -o -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
81 INTLTOOL_SHEET_RULE='%.sheet: %.sheet.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
82 INTLTOOL_SOUNDLIST_RULE='%.soundlist: %.soundlist.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
83 INTLTOOL_UI_RULE='%.ui: %.ui.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
84 INTLTOOL_XML_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
85 if test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge 5000; then
86 INTLTOOL_XML_NOMERGE_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u --no-translations $< [$]@'
87 else
88 INTLTOOL_XML_NOMERGE_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) ; $(INTLTOOL_V_MERGE)_it_tmp_dir=tmp.intltool.[$][$]RANDOM && mkdir [$][$]_it_tmp_dir && LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u [$][$]_it_tmp_dir $< [$]@ && rmdir [$][$]_it_tmp_dir'
89 fi
90 INTLTOOL_XAM_RULE='%.xam: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
91 INTLTOOL_KBD_RULE='%.kbd: %.kbd.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -m -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
92 INTLTOOL_CAVES_RULE='%.caves: %.caves.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
93 INTLTOOL_SCHEMAS_RULE='%.schemas: %.schemas.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -s -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
94 INTLTOOL_THEME_RULE='%.theme: %.theme.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
95 INTLTOOL_SERVICE_RULE='%.service: %.service.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
96 INTLTOOL_POLICY_RULE='%.policy: %.policy.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
97
98 _IT_SUBST(INTLTOOL_DESKTOP_RULE)
99 _IT_SUBST(INTLTOOL_DIRECTORY_RULE)
100 _IT_SUBST(INTLTOOL_KEYS_RULE)
101 _IT_SUBST(INTLTOOL_PROP_RULE)
102 _IT_SUBST(INTLTOOL_OAF_RULE)
103 _IT_SUBST(INTLTOOL_PONG_RULE)
104 _IT_SUBST(INTLTOOL_SERVER_RULE)
105 _IT_SUBST(INTLTOOL_SHEET_RULE)
106 _IT_SUBST(INTLTOOL_SOUNDLIST_RULE)
107 _IT_SUBST(INTLTOOL_UI_RULE)
108 _IT_SUBST(INTLTOOL_XAM_RULE)
109 _IT_SUBST(INTLTOOL_KBD_RULE)
110 _IT_SUBST(INTLTOOL_XML_RULE)
111 _IT_SUBST(INTLTOOL_XML_NOMERGE_RULE)
112 _IT_SUBST(INTLTOOL_CAVES_RULE)
113 _IT_SUBST(INTLTOOL_SCHEMAS_RULE)
114 _IT_SUBST(INTLTOOL_THEME_RULE)
115 _IT_SUBST(INTLTOOL_SERVICE_RULE)
116 _IT_SUBST(INTLTOOL_POLICY_RULE)
117
118 # Check the gettext tools to make sure they are GNU
119 AC_PATH_PROG(XGETTEXT, xgettext)
120 AC_PATH_PROG(MSGMERGE, msgmerge)
121 AC_PATH_PROG(MSGFMT, msgfmt)
122 AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT)
123 if test -z "$XGETTEXT" -o -z "$MSGMERGE" -o -z "$MSGFMT"; then
124 AC_MSG_ERROR([GNU gettext tools not found; required for intltool])
125 fi
126 xgversion="`$XGETTEXT --version|grep '(GNU ' 2> /dev/null`"
127 mmversion="`$MSGMERGE --version|grep '(GNU ' 2> /dev/null`"
128 mfversion="`$MSGFMT --version|grep '(GNU ' 2> /dev/null`"
129 if test -z "$xgversion" -o -z "$mmversion" -o -z "$mfversion"; then
130 AC_MSG_ERROR([GNU gettext tools not found; required for intltool])
131 fi
132
133 AC_PATH_PROG(INTLTOOL_PERL, perl)
134 if test -z "$INTLTOOL_PERL"; then
135 AC_MSG_ERROR([perl not found])
136 fi
137 AC_MSG_CHECKING([for perl >= 5.8.1])
138 $INTLTOOL_PERL -e "use 5.8.1;" > /dev/null 2>&1
139 if test $? -ne 0; then
140 AC_MSG_ERROR([perl 5.8.1 is required for intltool])
141 else
142 IT_PERL_VERSION=`$INTLTOOL_PERL -e "printf '%vd', $^V"`
143 AC_MSG_RESULT([$IT_PERL_VERSION])
144 fi
145 if test "x$2" != "xno-xml"; then
146 AC_MSG_CHECKING([for XML::Parser])
147 if `$INTLTOOL_PERL -e "require XML::Parser" 2>/dev/null`; then
148 AC_MSG_RESULT([ok])
149 else
150 AC_MSG_ERROR([XML::Parser perl module is required for intltool])
151 fi
152 fi
153
154 # Substitute ALL_LINGUAS so we can use it in po/Makefile
155 AC_SUBST(ALL_LINGUAS)
156
157 IT_PO_SUBDIR([po])
158
159 ])
160
161
162 # IT_PO_SUBDIR(DIRNAME)
163 # ---------------------
164 # All po subdirs have to be declared with this macro; the subdir "po" is
165 # declared by IT_PROG_INTLTOOL.
166 #
167 AC_DEFUN([IT_PO_SUBDIR],
168 [AC_PREREQ([2.53])dnl We use ac_top_srcdir inside AC_CONFIG_COMMANDS.
169 dnl
170 dnl The following CONFIG_COMMANDS should be executed at the very end
171 dnl of config.status.
172 AC_CONFIG_COMMANDS_PRE([
173 AC_CONFIG_COMMANDS([$1/stamp-it], [
174 if [ ! grep "^# INTLTOOL_MAKEFILE$" "$1/Makefile.in" > /dev/null ]; then
175 AC_MSG_ERROR([$1/Makefile.in.in was not created by intltoolize.])
176 fi
177 rm -f "$1/stamp-it" "$1/stamp-it.tmp" "$1/POTFILES" "$1/Makefile.tmp"
178 >"$1/stamp-it.tmp"
179 [sed '/^#/d
180 s/^[[].*] *//
181 /^[ ]*$/d
182 '"s|^| $ac_top_srcdir/|" \
183 "$srcdir/$1/POTFILES.in" | sed '$!s/$/ \\/' >"$1/POTFILES"
184 ]
185 [sed '/^POTFILES =/,/[^\\]$/ {
186 /^POTFILES =/!d
187 r $1/POTFILES
188 }
189 ' "$1/Makefile.in" >"$1/Makefile"]
190 rm -f "$1/Makefile.tmp"
191 mv "$1/stamp-it.tmp" "$1/stamp-it"
192 ])
193 ])dnl
194 ])
195
196 # _IT_SUBST(VARIABLE)
197 # -------------------
198 # Abstract macro to do either _AM_SUBST_NOTMAKE or AC_SUBST
199 #
200 AC_DEFUN([_IT_SUBST],
201 [
202 AC_SUBST([$1])
203 m4_ifdef([_AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE([$1])])
204 ]
205 )
206
207 # deprecated macros
208 AU_ALIAS([AC_PROG_INTLTOOL], [IT_PROG_INTLTOOL])
209 # A hint is needed for aclocal from Automake <= 1.9.4:
210 # AC_DEFUN([AC_PROG_INTLTOOL], ...)
211
0 dnl -*- mode: autoconf -*-
1 dnl Copyright 2009 Johan Dahlin
2 dnl
3 dnl This file is free software; the author(s) gives unlimited
4 dnl permission to copy and/or distribute it, with or without
5 dnl modifications, as long as this notice is preserved.
6 dnl
7
8 # serial 1
9
10 m4_define([_GOBJECT_INTROSPECTION_CHECK_INTERNAL],
11 [
12 AC_BEFORE([AC_PROG_LIBTOOL],[$0])dnl setup libtool first
13 AC_BEFORE([AM_PROG_LIBTOOL],[$0])dnl setup libtool first
14 AC_BEFORE([LT_INIT],[$0])dnl setup libtool first
15
16 dnl enable/disable introspection
17 m4_if([$2], [require],
18 [dnl
19 enable_introspection=yes
20 ],[dnl
21 AC_ARG_ENABLE(introspection,
22 AS_HELP_STRING([--enable-introspection[=@<:@no/auto/yes@:>@]],
23 [Enable introspection for this build]),,
24 [enable_introspection=auto])
25 ])dnl
26
27 AC_MSG_CHECKING([for gobject-introspection])
28
29 dnl presence/version checking
30 AS_CASE([$enable_introspection],
31 [no], [dnl
32 found_introspection="no (disabled, use --enable-introspection to enable)"
33 ],dnl
34 [yes],[dnl
35 PKG_CHECK_EXISTS([gobject-introspection-1.0],,
36 AC_MSG_ERROR([gobject-introspection-1.0 is not installed]))
37 PKG_CHECK_EXISTS([gobject-introspection-1.0 >= $1],
38 found_introspection=yes,
39 AC_MSG_ERROR([You need to have gobject-introspection >= $1 installed to build AC_PACKAGE_NAME]))
40 ],dnl
41 [auto],[dnl
42 PKG_CHECK_EXISTS([gobject-introspection-1.0 >= $1], found_introspection=yes, found_introspection=no)
43 dnl Canonicalize enable_introspection
44 enable_introspection=$found_introspection
45 ],dnl
46 [dnl
47 AC_MSG_ERROR([invalid argument passed to --enable-introspection, should be one of @<:@no/auto/yes@:>@])
48 ])dnl
49
50 AC_MSG_RESULT([$found_introspection])
51
52 INTROSPECTION_SCANNER=
53 INTROSPECTION_COMPILER=
54 INTROSPECTION_GENERATE=
55 INTROSPECTION_GIRDIR=
56 INTROSPECTION_TYPELIBDIR=
57 if test "x$found_introspection" = "xyes"; then
58 INTROSPECTION_SCANNER=`$PKG_CONFIG --variable=g_ir_scanner gobject-introspection-1.0`
59 INTROSPECTION_COMPILER=`$PKG_CONFIG --variable=g_ir_compiler gobject-introspection-1.0`
60 INTROSPECTION_GENERATE=`$PKG_CONFIG --variable=g_ir_generate gobject-introspection-1.0`
61 INTROSPECTION_GIRDIR=`$PKG_CONFIG --variable=girdir gobject-introspection-1.0`
62 INTROSPECTION_TYPELIBDIR="$($PKG_CONFIG --variable=typelibdir gobject-introspection-1.0)"
63 INTROSPECTION_CFLAGS=`$PKG_CONFIG --cflags gobject-introspection-1.0`
64 INTROSPECTION_LIBS=`$PKG_CONFIG --libs gobject-introspection-1.0`
65 INTROSPECTION_MAKEFILE=`$PKG_CONFIG --variable=datadir gobject-introspection-1.0`/gobject-introspection-1.0/Makefile.introspection
66 fi
67 AC_SUBST(INTROSPECTION_SCANNER)
68 AC_SUBST(INTROSPECTION_COMPILER)
69 AC_SUBST(INTROSPECTION_GENERATE)
70 AC_SUBST(INTROSPECTION_GIRDIR)
71 AC_SUBST(INTROSPECTION_TYPELIBDIR)
72 AC_SUBST(INTROSPECTION_CFLAGS)
73 AC_SUBST(INTROSPECTION_LIBS)
74 AC_SUBST(INTROSPECTION_MAKEFILE)
75
76 AM_CONDITIONAL(HAVE_INTROSPECTION, test "x$found_introspection" = "xyes")
77 ])
78
79
80 dnl Usage:
81 dnl GOBJECT_INTROSPECTION_CHECK([minimum-g-i-version])
82
83 AC_DEFUN([GOBJECT_INTROSPECTION_CHECK],
84 [
85 _GOBJECT_INTROSPECTION_CHECK_INTERNAL([$1])
86 ])
87
88 dnl Usage:
89 dnl GOBJECT_INTROSPECTION_REQUIRE([minimum-g-i-version])
90
91
92 AC_DEFUN([GOBJECT_INTROSPECTION_REQUIRE],
93 [
94 _GOBJECT_INTROSPECTION_CHECK_INTERNAL([$1], [require])
95 ])
0 # pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*-
1 # serial 11 (pkg-config-0.29.1)
2
3 dnl Copyright © 2004 Scott James Remnant <scott@netsplit.com>.
4 dnl Copyright © 2012-2015 Dan Nicholson <dbn.lists@gmail.com>
5 dnl
6 dnl This program is free software; you can redistribute it and/or modify
7 dnl it under the terms of the GNU General Public License as published by
8 dnl the Free Software Foundation; either version 2 of the License, or
9 dnl (at your option) any later version.
10 dnl
11 dnl This program is distributed in the hope that it will be useful, but
12 dnl WITHOUT ANY WARRANTY; without even the implied warranty of
13 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 dnl General Public License for more details.
15 dnl
16 dnl You should have received a copy of the GNU General Public License
17 dnl along with this program; if not, write to the Free Software
18 dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
19 dnl 02111-1307, USA.
20 dnl
21 dnl As a special exception to the GNU General Public License, if you
22 dnl distribute this file as part of a program that contains a
23 dnl configuration script generated by Autoconf, you may include it under
24 dnl the same distribution terms that you use for the rest of that
25 dnl program.
26
27 dnl PKG_PREREQ(MIN-VERSION)
28 dnl -----------------------
29 dnl Since: 0.29
30 dnl
31 dnl Verify that the version of the pkg-config macros are at least
32 dnl MIN-VERSION. Unlike PKG_PROG_PKG_CONFIG, which checks the user's
33 dnl installed version of pkg-config, this checks the developer's version
34 dnl of pkg.m4 when generating configure.
35 dnl
36 dnl To ensure that this macro is defined, also add:
37 dnl m4_ifndef([PKG_PREREQ],
38 dnl [m4_fatal([must install pkg-config 0.29 or later before running autoconf/autogen])])
39 dnl
40 dnl See the "Since" comment for each macro you use to see what version
41 dnl of the macros you require.
42 m4_defun([PKG_PREREQ],
43 [m4_define([PKG_MACROS_VERSION], [0.29.1])
44 m4_if(m4_version_compare(PKG_MACROS_VERSION, [$1]), -1,
45 [m4_fatal([pkg.m4 version $1 or higher is required but ]PKG_MACROS_VERSION[ found])])
46 ])dnl PKG_PREREQ
47
48 dnl PKG_PROG_PKG_CONFIG([MIN-VERSION])
49 dnl ----------------------------------
50 dnl Since: 0.16
51 dnl
52 dnl Search for the pkg-config tool and set the PKG_CONFIG variable to
53 dnl first found in the path. Checks that the version of pkg-config found
54 dnl is at least MIN-VERSION. If MIN-VERSION is not specified, 0.9.0 is
55 dnl used since that's the first version where most current features of
56 dnl pkg-config existed.
57 AC_DEFUN([PKG_PROG_PKG_CONFIG],
58 [m4_pattern_forbid([^_?PKG_[A-Z_]+$])
59 m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$])
60 m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$])
61 AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])
62 AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path])
63 AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path])
64
65 if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
66 AC_PATH_TOOL([PKG_CONFIG], [pkg-config])
67 fi
68 if test -n "$PKG_CONFIG"; then
69 _pkg_min_version=m4_default([$1], [0.9.0])
70 AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version])
71 if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
72 AC_MSG_RESULT([yes])
73 else
74 AC_MSG_RESULT([no])
75 PKG_CONFIG=""
76 fi
77 fi[]dnl
78 ])dnl PKG_PROG_PKG_CONFIG
79
80 dnl PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
81 dnl -------------------------------------------------------------------
82 dnl Since: 0.18
83 dnl
84 dnl Check to see whether a particular set of modules exists. Similar to
85 dnl PKG_CHECK_MODULES(), but does not set variables or print errors.
86 dnl
87 dnl Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG])
88 dnl only at the first occurence in configure.ac, so if the first place
89 dnl it's called might be skipped (such as if it is within an "if", you
90 dnl have to call PKG_CHECK_EXISTS manually
91 AC_DEFUN([PKG_CHECK_EXISTS],
92 [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
93 if test -n "$PKG_CONFIG" && \
94 AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then
95 m4_default([$2], [:])
96 m4_ifvaln([$3], [else
97 $3])dnl
98 fi])
99
100 dnl _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES])
101 dnl ---------------------------------------------
102 dnl Internal wrapper calling pkg-config via PKG_CONFIG and setting
103 dnl pkg_failed based on the result.
104 m4_define([_PKG_CONFIG],
105 [if test -n "$$1"; then
106 pkg_cv_[]$1="$$1"
107 elif test -n "$PKG_CONFIG"; then
108 PKG_CHECK_EXISTS([$3],
109 [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`
110 test "x$?" != "x0" && pkg_failed=yes ],
111 [pkg_failed=yes])
112 else
113 pkg_failed=untried
114 fi[]dnl
115 ])dnl _PKG_CONFIG
116
117 dnl _PKG_SHORT_ERRORS_SUPPORTED
118 dnl ---------------------------
119 dnl Internal check to see if pkg-config supports short errors.
120 AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED],
121 [AC_REQUIRE([PKG_PROG_PKG_CONFIG])
122 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
123 _pkg_short_errors_supported=yes
124 else
125 _pkg_short_errors_supported=no
126 fi[]dnl
127 ])dnl _PKG_SHORT_ERRORS_SUPPORTED
128
129
130 dnl PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
131 dnl [ACTION-IF-NOT-FOUND])
132 dnl --------------------------------------------------------------
133 dnl Since: 0.4.0
134 dnl
135 dnl Note that if there is a possibility the first call to
136 dnl PKG_CHECK_MODULES might not happen, you should be sure to include an
137 dnl explicit call to PKG_PROG_PKG_CONFIG in your configure.ac
138 AC_DEFUN([PKG_CHECK_MODULES],
139 [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
140 AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl
141 AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl
142
143 pkg_failed=no
144 AC_MSG_CHECKING([for $1])
145
146 _PKG_CONFIG([$1][_CFLAGS], [cflags], [$2])
147 _PKG_CONFIG([$1][_LIBS], [libs], [$2])
148
149 m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS
150 and $1[]_LIBS to avoid the need to call pkg-config.
151 See the pkg-config man page for more details.])
152
153 if test $pkg_failed = yes; then
154 AC_MSG_RESULT([no])
155 _PKG_SHORT_ERRORS_SUPPORTED
156 if test $_pkg_short_errors_supported = yes; then
157 $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1`
158 else
159 $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1`
160 fi
161 # Put the nasty error message in config.log where it belongs
162 echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD
163
164 m4_default([$4], [AC_MSG_ERROR(
165 [Package requirements ($2) were not met:
166
167 $$1_PKG_ERRORS
168
169 Consider adjusting the PKG_CONFIG_PATH environment variable if you
170 installed software in a non-standard prefix.
171
172 _PKG_TEXT])[]dnl
173 ])
174 elif test $pkg_failed = untried; then
175 AC_MSG_RESULT([no])
176 m4_default([$4], [AC_MSG_FAILURE(
177 [The pkg-config script could not be found or is too old. Make sure it
178 is in your PATH or set the PKG_CONFIG environment variable to the full
179 path to pkg-config.
180
181 _PKG_TEXT
182
183 To get pkg-config, see <http://pkg-config.freedesktop.org/>.])[]dnl
184 ])
185 else
186 $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
187 $1[]_LIBS=$pkg_cv_[]$1[]_LIBS
188 AC_MSG_RESULT([yes])
189 $3
190 fi[]dnl
191 ])dnl PKG_CHECK_MODULES
192
193
194 dnl PKG_CHECK_MODULES_STATIC(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
195 dnl [ACTION-IF-NOT-FOUND])
196 dnl ---------------------------------------------------------------------
197 dnl Since: 0.29
198 dnl
199 dnl Checks for existence of MODULES and gathers its build flags with
200 dnl static libraries enabled. Sets VARIABLE-PREFIX_CFLAGS from --cflags
201 dnl and VARIABLE-PREFIX_LIBS from --libs.
202 dnl
203 dnl Note that if there is a possibility the first call to
204 dnl PKG_CHECK_MODULES_STATIC might not happen, you should be sure to
205 dnl include an explicit call to PKG_PROG_PKG_CONFIG in your
206 dnl configure.ac.
207 AC_DEFUN([PKG_CHECK_MODULES_STATIC],
208 [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
209 _save_PKG_CONFIG=$PKG_CONFIG
210 PKG_CONFIG="$PKG_CONFIG --static"
211 PKG_CHECK_MODULES($@)
212 PKG_CONFIG=$_save_PKG_CONFIG[]dnl
213 ])dnl PKG_CHECK_MODULES_STATIC
214
215
216 dnl PKG_INSTALLDIR([DIRECTORY])
217 dnl -------------------------
218 dnl Since: 0.27
219 dnl
220 dnl Substitutes the variable pkgconfigdir as the location where a module
221 dnl should install pkg-config .pc files. By default the directory is
222 dnl $libdir/pkgconfig, but the default can be changed by passing
223 dnl DIRECTORY. The user can override through the --with-pkgconfigdir
224 dnl parameter.
225 AC_DEFUN([PKG_INSTALLDIR],
226 [m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])])
227 m4_pushdef([pkg_description],
228 [pkg-config installation directory @<:@]pkg_default[@:>@])
229 AC_ARG_WITH([pkgconfigdir],
230 [AS_HELP_STRING([--with-pkgconfigdir], pkg_description)],,
231 [with_pkgconfigdir=]pkg_default)
232 AC_SUBST([pkgconfigdir], [$with_pkgconfigdir])
233 m4_popdef([pkg_default])
234 m4_popdef([pkg_description])
235 ])dnl PKG_INSTALLDIR
236
237
238 dnl PKG_NOARCH_INSTALLDIR([DIRECTORY])
239 dnl --------------------------------
240 dnl Since: 0.27
241 dnl
242 dnl Substitutes the variable noarch_pkgconfigdir as the location where a
243 dnl module should install arch-independent pkg-config .pc files. By
244 dnl default the directory is $datadir/pkgconfig, but the default can be
245 dnl changed by passing DIRECTORY. The user can override through the
246 dnl --with-noarch-pkgconfigdir parameter.
247 AC_DEFUN([PKG_NOARCH_INSTALLDIR],
248 [m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])])
249 m4_pushdef([pkg_description],
250 [pkg-config arch-independent installation directory @<:@]pkg_default[@:>@])
251 AC_ARG_WITH([noarch-pkgconfigdir],
252 [AS_HELP_STRING([--with-noarch-pkgconfigdir], pkg_description)],,
253 [with_noarch_pkgconfigdir=]pkg_default)
254 AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir])
255 m4_popdef([pkg_default])
256 m4_popdef([pkg_description])
257 ])dnl PKG_NOARCH_INSTALLDIR
258
259
260 dnl PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE,
261 dnl [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
262 dnl -------------------------------------------
263 dnl Since: 0.28
264 dnl
265 dnl Retrieves the value of the pkg-config variable for the given module.
266 AC_DEFUN([PKG_CHECK_VAR],
267 [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
268 AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl
269
270 _PKG_CONFIG([$1], [variable="][$3]["], [$2])
271 AS_VAR_COPY([$1], [pkg_cv_][$1])
272
273 AS_VAR_IF([$1], [""], [$5], [$4])dnl
274 ])dnl PKG_CHECK_VAR
275
276 dnl PKG_WITH_MODULES(VARIABLE-PREFIX, MODULES,
277 dnl [ACTION-IF-FOUND],[ACTION-IF-NOT-FOUND],
278 dnl [DESCRIPTION], [DEFAULT])
279 dnl ------------------------------------------
280 dnl
281 dnl Prepare a "--with-" configure option using the lowercase
282 dnl [VARIABLE-PREFIX] name, merging the behaviour of AC_ARG_WITH and
283 dnl PKG_CHECK_MODULES in a single macro.
284 AC_DEFUN([PKG_WITH_MODULES],
285 [
286 m4_pushdef([with_arg], m4_tolower([$1]))
287
288 m4_pushdef([description],
289 [m4_default([$5], [build with ]with_arg[ support])])
290
291 m4_pushdef([def_arg], [m4_default([$6], [auto])])
292 m4_pushdef([def_action_if_found], [AS_TR_SH([with_]with_arg)=yes])
293 m4_pushdef([def_action_if_not_found], [AS_TR_SH([with_]with_arg)=no])
294
295 m4_case(def_arg,
296 [yes],[m4_pushdef([with_without], [--without-]with_arg)],
297 [m4_pushdef([with_without],[--with-]with_arg)])
298
299 AC_ARG_WITH(with_arg,
300 AS_HELP_STRING(with_without, description[ @<:@default=]def_arg[@:>@]),,
301 [AS_TR_SH([with_]with_arg)=def_arg])
302
303 AS_CASE([$AS_TR_SH([with_]with_arg)],
304 [yes],[PKG_CHECK_MODULES([$1],[$2],$3,$4)],
305 [auto],[PKG_CHECK_MODULES([$1],[$2],
306 [m4_n([def_action_if_found]) $3],
307 [m4_n([def_action_if_not_found]) $4])])
308
309 m4_popdef([with_arg])
310 m4_popdef([description])
311 m4_popdef([def_arg])
312
313 ])dnl PKG_WITH_MODULES
314
315 dnl PKG_HAVE_WITH_MODULES(VARIABLE-PREFIX, MODULES,
316 dnl [DESCRIPTION], [DEFAULT])
317 dnl -----------------------------------------------
318 dnl
319 dnl Convenience macro to trigger AM_CONDITIONAL after PKG_WITH_MODULES
320 dnl check._[VARIABLE-PREFIX] is exported as make variable.
321 AC_DEFUN([PKG_HAVE_WITH_MODULES],
322 [
323 PKG_WITH_MODULES([$1],[$2],,,[$3],[$4])
324
325 AM_CONDITIONAL([HAVE_][$1],
326 [test "$AS_TR_SH([with_]m4_tolower([$1]))" = "yes"])
327 ])dnl PKG_HAVE_WITH_MODULES
328
329 dnl PKG_HAVE_DEFINE_WITH_MODULES(VARIABLE-PREFIX, MODULES,
330 dnl [DESCRIPTION], [DEFAULT])
331 dnl ------------------------------------------------------
332 dnl
333 dnl Convenience macro to run AM_CONDITIONAL and AC_DEFINE after
334 dnl PKG_WITH_MODULES check. HAVE_[VARIABLE-PREFIX] is exported as make
335 dnl and preprocessor variable.
336 AC_DEFUN([PKG_HAVE_DEFINE_WITH_MODULES],
337 [
338 PKG_HAVE_WITH_MODULES([$1],[$2],[$3],[$4])
339
340 AS_IF([test "$AS_TR_SH([with_]m4_tolower([$1]))" = "yes"],
341 [AC_DEFINE([HAVE_][$1], 1, [Enable ]m4_tolower([$1])[ support])])
342 ])dnl PKG_HAVE_DEFINE_WITH_MODULES
+0
-5
m4/virt-gettext.m4 less more
0 AC_DEFUN([LIBVIRT_GLIB_GETTEXT],[
1 GETTEXT_PACKAGE=libvirt-glib
2 AC_SUBST(GETTEXT_PACKAGE)
3 AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE],"$GETTEXT_PACKAGE", [GETTEXT package name])
4 ])
0 dnl gettext utilities
1 dnl
2 dnl Copyright (C) 2018 Red Hat, Inc.
3 dnl
4 dnl This library is free software; you can redistribute it and/or
5 dnl modify it under the terms of the GNU Lesser General Public
6 dnl License as published by the Free Software Foundation; either
7 dnl version 2.1 of the License, or (at your option) any later version.
8 dnl
9 dnl This library is distributed in the hope that it will be useful,
10 dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
11 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 dnl Lesser General Public License for more details.
13 dnl
14 dnl You should have received a copy of the GNU Lesser General Public
15 dnl License along with this library. If not, see
16 dnl <http://www.gnu.org/licenses/>.
17 dnl
18
19 AC_DEFUN([LIBVIRT_GLIB_ARG_NLS],[
20 m4_divert_text([DEFAULTS], [[enable_nls=yes]])
21 AC_ARG_ENABLE([nls],
22 [AS_HELP_STRING([--enable-nls],
23 [NLS @<:@default=yes@:>@])])
24 ])
25
26 AC_DEFUN([LIBVIRT_GLIB_CHECK_NLS],[
27 dnl GNU gettext tools (optional).
28 AC_CHECK_PROG([XGETTEXT], [xgettext], [xgettext], [no])
29 AC_CHECK_PROG([MSGFMT], [msgfmt], [msgfmt], [no])
30 AC_CHECK_PROG([MSGMERGE], [msgmerge], [msgmerge], [no])
31
32 dnl Check they are the GNU gettext tools.
33 AC_MSG_CHECKING([msgfmt is GNU tool])
34 if $MSGFMT --version >/dev/null 2>&1 && $MSGFMT --version | grep -q 'GNU gettext'; then
35 msgfmt_is_gnu=yes
36 else
37 msgfmt_is_gnu=no
38 fi
39 AC_MSG_RESULT([$msgfmt_is_gnu])
40 AM_CONDITIONAL([ENABLE_NLS], [test "x$enable_nls" = "xyes"])
41 AM_CONDITIONAL([HAVE_GNU_GETTEXT_TOOLS],
42 [test "x$XGETTEXT" != "xno" && test "x$MSGFMT" != "xno" && \
43 test "x$MSGMERGE" != "xno" && test "x$msgfmt_is_gnu" != "xno"])
44 ])
1515 BuildRequires: mingw64-glib2
1616 BuildRequires: mingw32-libvirt >= 0.9.10
1717 BuildRequires: mingw64-libvirt >= 0.9.10
18 BuildRequires: intltool
18 BuildRequires: gettext
1919 BuildRequires: pkgconfig
2020
2121 BuildArch: noarch
+0
-95
po/LINGUAS less more
0 af
1 am
2 anp
3 ar
4 as
5 ast
6 bal
7 be
8 bg
9 bn_IN
10 bn
11 bo
12 br
13 brx
14 bs
15 ca
16 cs
17 cy
18 da
19 de_CH
20 de
21 el
22 en_GB
23 eo
24 es
25 et
26 eu
27 fa
28 fi
29 fr
30 gl
31 gu
32 he
33 hi
34 hr
35 hu
36 ia
37 id
38 ilo
39 is
40 it
41 ja
42 ka
43 kk
44 km
45 kn
46 ko
47 kw_GB
48 kw@kkcor
49 kw
50 kw@uccor
51 ky
52 lt
53 lv
54 mai
55 mk
56 ml
57 mn
58 mr
59 ms
60 nb
61 nds
62 ne
63 nl
64 nn
65 nso
66 or
67 pa
68 pl
69 pt_BR
70 pt
71 ro
72 ru
73 si
74 sk
75 sl
76 sq
77 sr@latin
78 sr
79 sv
80 ta
81 te
82 tg
83 th
84 tr
85 tw
86 uk
87 ur
88 vi
89 wba
90 yo
91 zh_CN
92 zh_HK
93 zh_TW
94 zu
0 DOMAIN = $(PACKAGE_NAME)
1 COPYRIGHT_HOLDER = The Libvirt authors
2 MSGID_BUGS_ADDRESS = https://libvirt.org/bugs.html
3
4 LANGS := \
5 af am anp ar as ast bal be bg bn_IN \
6 bn bo br brx bs ca cs cy da de_CH \
7 de el en_GB eo es et eu fa fi \
8 fr gl gu he hi hr hu ia \
9 id ilo is it ja ka kk km kn ko \
10 kw_GB kw@kkcor kw kw@uccor ky lt lv mai mk ml \
11 mn mr ms nb nds ne nl nn nso \
12 or pa pl pt_BR pt ro ru si sk sl \
13 sq sr@latin sr sv ta te tg th tr tw \
14 uk ur vi wba yo zh_CN zh_HK zh_TW zu
15
16
17 POTFILE_DEPS := $(shell $(SED) 's,^,$(top_srcdir)/,' $(srcdir)/POTFILES)
18 POTFILE := $(srcdir)/$(DOMAIN).pot
19 POFILES := $(LANGS:%=$(srcdir)/%.po)
20 GMOFILES := $(LANGS:%=$(srcdir)/%.gmo)
21
22 MAINTAINERCLEANFILES = $(POTFILE) $(POFILES) $(GMOFILES)
23
24 EXTRA_DIST = \
25 POTFILES \
26 $(POTFILE) \
27 $(POFILES) \
28 $(GMOFILES)
29
30 if HAVE_GNU_GETTEXT_TOOLS
31
32 XGETTEXT_ARGS = \
33 --default-domain=$(DOMAIN) \
34 --from-code=utf-8 \
35 --add-comments=TRANSLATORS: \
36 --keyword=_ --keyword=N_ \
37 --copyright-holder='$(COPYRIGHT_HOLDER)' \
38 --package-name="$(PACKAGE_NAME)" \
39 --package-version="$(PACKAGE_VERSION)" \
40 --msgid-bugs-address="$(MSGID_BUGS_ADDRESS)" \
41 --directory=$(top_srcdir) \
42 $(NULL)
43
44 SED_PO_FIXUP_ARGS = \
45 -e "s|text/plain; charset=CHARSET|text/plain; charset=UTF-8|g" \
46 -e "s|SOME DESCRIPTIVE TITLE|Libvirt package strings|g" \
47 -e "s|Copyright (C) YEAR|Copyright (C) $$(date +'%Y')|" \
48 $(NULL)
49
50 update-po: $(POFILES)
51
52 update-gmo: $(GMOFILES)
53
54 update-mini-po: $(POTFILE)
55 for lang in $(LANGS); do \
56 echo "Minimizing $$lang content" && \
57 $(MSGMERGE) --no-location --no-fuzzy-matching --sort-output \
58 $(srcdir)/$$lang.po $(POTFILE) | \
59 $(SED) $(SED_PO_FIXUP_ARGS) | \
60 $(PERL) $(top_srcdir)/build-aux/minimize-po.pl > \
61 $(srcdir)/$$lang.mini.po ; \
62 done
63
64 push-pot: $(POTFILE)
65 zanata push --push-type=source
66
67 pull-po: $(POTFILE)
68 zanata pull --create-skeletons
69 $(MAKE) update-mini-po
70 $(MAKE) update-gmo
71
72 $(POTFILE): POTFILES $(POTFILE_DEPS)
73 $(XGETTEXT) -o $@-t $(XGETTEXT_ARGS) \
74 --files-from=$(abs_srcdir)/POTFILES
75 $(SED) $(SED_PO_FIXUP_ARGS) < $@-t > $@
76 rm -f $@-t
77
78 $(srcdir)/%.po: $(srcdir)/%.mini.po $(POTFILE)
79 $(MSGMERGE) --no-fuzzy-matching $< $(POTFILE) | \
80 $(SED) $(SED_PO_FIXUP_ARGS) > $@
81
82 $(srcdir)/%.gmo: $(srcdir)/%.po
83 rm -f $@ $@-t
84 $(MSGFMT) -c -o $@-t $<
85 mv $@-t $@
86
87 .PRECIOUS: $(POTFILE) $(POFILES)
88
89 endif HAVE_GNU_GETTEXT_TOOLS
90
91 if ENABLE_NLS
92
93 # Cannot use 'localedir' since this conflicts with autoconf.
94 langinstdir = $(datadir)/locale
95
96 install-data-hook: $(GMOFILES)
97 mkdir -p $(DESTDIR)$(langinstdir)
98 for lang in $(LANGS); do \
99 d=$(DESTDIR)$(langinstdir)/$$lang/LC_MESSAGES; \
100 mkdir -p $$d; \
101 install -m 0644 $(srcdir)/$$lang.gmo $$d/$(DOMAIN).mo; \
102 done
103
104 uninstall-hook:
105 for lang in $(LANGS); do \
106 d=$(DESTDIR)$(langinstdir)/$$lang/LC_MESSAGES; \
107 rm -f $$d/$(DOMAIN).mo; \
108 done
109
110 endif ENABLE_NLS
0 # Makefile.in generated by automake 1.16.1 from Makefile.am.
1 # @configure_input@
2
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
4
5 # This Makefile.in is free software; the Free Software Foundation
6 # gives unlimited permission to copy and/or distribute it,
7 # with or without modifications, as long as this notice is preserved.
8
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
11 # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
12 # PARTICULAR PURPOSE.
13
14 @SET_MAKE@
15 VPATH = @srcdir@
16 am__is_gnu_make = { \
17 if test -z '$(MAKELEVEL)'; then \
18 false; \
19 elif test -n '$(MAKE_HOST)'; then \
20 true; \
21 elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
22 true; \
23 else \
24 false; \
25 fi; \
26 }
27 am__make_running_with_option = \
28 case $${target_option-} in \
29 ?) ;; \
30 *) echo "am__make_running_with_option: internal error: invalid" \
31 "target option '$${target_option-}' specified" >&2; \
32 exit 1;; \
33 esac; \
34 has_opt=no; \
35 sane_makeflags=$$MAKEFLAGS; \
36 if $(am__is_gnu_make); then \
37 sane_makeflags=$$MFLAGS; \
38 else \
39 case $$MAKEFLAGS in \
40 *\\[\ \ ]*) \
41 bs=\\; \
42 sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
43 | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
44 esac; \
45 fi; \
46 skip_next=no; \
47 strip_trailopt () \
48 { \
49 flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
50 }; \
51 for flg in $$sane_makeflags; do \
52 test $$skip_next = yes && { skip_next=no; continue; }; \
53 case $$flg in \
54 *=*|--*) continue;; \
55 -*I) strip_trailopt 'I'; skip_next=yes;; \
56 -*I?*) strip_trailopt 'I';; \
57 -*O) strip_trailopt 'O'; skip_next=yes;; \
58 -*O?*) strip_trailopt 'O';; \
59 -*l) strip_trailopt 'l'; skip_next=yes;; \
60 -*l?*) strip_trailopt 'l';; \
61 -[dEDm]) skip_next=yes;; \
62 -[JT]) skip_next=yes;; \
63 esac; \
64 case $$flg in \
65 *$$target_option*) has_opt=yes; break;; \
66 esac; \
67 done; \
68 test $$has_opt = yes
69 am__make_dryrun = (target_option=n; $(am__make_running_with_option))
70 am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
71 pkgdatadir = $(datadir)/@PACKAGE@
72 pkgincludedir = $(includedir)/@PACKAGE@
73 pkglibdir = $(libdir)/@PACKAGE@
74 pkglibexecdir = $(libexecdir)/@PACKAGE@
75 am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
76 install_sh_DATA = $(install_sh) -c -m 644
77 install_sh_PROGRAM = $(install_sh) -c
78 install_sh_SCRIPT = $(install_sh) -c
79 INSTALL_HEADER = $(INSTALL_DATA)
80 transform = $(program_transform_name)
81 NORMAL_INSTALL = :
82 PRE_INSTALL = :
83 POST_INSTALL = :
84 NORMAL_UNINSTALL = :
85 PRE_UNINSTALL = :
86 POST_UNINSTALL = :
87 build_triplet = @build@
88 host_triplet = @host@
89 subdir = po
90 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
91 am__aclocal_m4_deps = $(top_srcdir)/m4/glibtests.m4 \
92 $(top_srcdir)/m4/gtk-doc.m4 $(top_srcdir)/m4/introspection.m4 \
93 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
94 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
95 $(top_srcdir)/m4/lt~obsolete.m4 \
96 $(top_srcdir)/m4/manywarnings.m4 $(top_srcdir)/m4/pkg.m4 \
97 $(top_srcdir)/m4/virt-compile-warnings.m4 \
98 $(top_srcdir)/m4/virt-nls.m4 $(top_srcdir)/m4/warnings.m4 \
99 $(top_srcdir)/configure.ac
100 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
101 $(ACLOCAL_M4)
102 DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
103 mkinstalldirs = $(install_sh) -d
104 CONFIG_HEADER = $(top_builddir)/config.h
105 CONFIG_CLEAN_FILES =
106 CONFIG_CLEAN_VPATH_FILES =
107 AM_V_P = $(am__v_P_@AM_V@)
108 am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
109 am__v_P_0 = false
110 am__v_P_1 = :
111 AM_V_GEN = $(am__v_GEN_@AM_V@)
112 am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
113 am__v_GEN_0 = @echo " GEN " $@;
114 am__v_GEN_1 =
115 AM_V_at = $(am__v_at_@AM_V@)
116 am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
117 am__v_at_0 = @
118 am__v_at_1 =
119 SOURCES =
120 DIST_SOURCES =
121 am__can_run_installinfo = \
122 case $$AM_UPDATE_INFO_DIR in \
123 n|no|NO) false;; \
124 *) (install-info --version) >/dev/null 2>&1;; \
125 esac
126 am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
127 am__DIST_COMMON = $(srcdir)/Makefile.in
128 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
129 ACLOCAL = @ACLOCAL@
130 AMTAR = @AMTAR@
131 AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
132 AR = @AR@
133 AS = @AS@
134 AUTOCONF = @AUTOCONF@
135 AUTOHEADER = @AUTOHEADER@
136 AUTOMAKE = @AUTOMAKE@
137 AWK = @AWK@
138 CC = @CC@
139 CCDEPMODE = @CCDEPMODE@
140 CFLAGS = @CFLAGS@
141 COVERAGE_CFLAGS = @COVERAGE_CFLAGS@
142 COVERAGE_LDFLAGS = @COVERAGE_LDFLAGS@
143 COV_FLAGS = @COV_FLAGS@
144 CPP = @CPP@
145 CPPFLAGS = @CPPFLAGS@
146 CYGPATH_W = @CYGPATH_W@
147 CYGWIN_EXTRA_LDFLAGS = @CYGWIN_EXTRA_LDFLAGS@
148 CYGWIN_EXTRA_LIBADD = @CYGWIN_EXTRA_LIBADD@
149 DEFS = @DEFS@
150 DEPDIR = @DEPDIR@
151 DLLTOOL = @DLLTOOL@
152 DSYMUTIL = @DSYMUTIL@
153 DUMPBIN = @DUMPBIN@
154 ECHO_C = @ECHO_C@
155 ECHO_N = @ECHO_N@
156 ECHO_T = @ECHO_T@
157 EGREP = @EGREP@
158 EXEEXT = @EXEEXT@
159 FGREP = @FGREP@
160 GIO2_CFLAGS = @GIO2_CFLAGS@
161 GIO2_LIBS = @GIO2_LIBS@
162 GLIB2_CFLAGS = @GLIB2_CFLAGS@
163 GLIB2_LIBS = @GLIB2_LIBS@
164 GLIB2_REQUIRED = @GLIB2_REQUIRED@
165 GLIB2_VERSION_SYMBOL = @GLIB2_VERSION_SYMBOL@
166 GLIB_MKENUMS = @GLIB_MKENUMS@
167 GOBJECT2_CFLAGS = @GOBJECT2_CFLAGS@
168 GOBJECT2_LIBS = @GOBJECT2_LIBS@
169 GREP = @GREP@
170 GTHREAD2_CFLAGS = @GTHREAD2_CFLAGS@
171 GTHREAD2_LIBS = @GTHREAD2_LIBS@
172 GTKDOC_CHECK = @GTKDOC_CHECK@
173 GTKDOC_CHECK_PATH = @GTKDOC_CHECK_PATH@
174 GTKDOC_DEPS_CFLAGS = @GTKDOC_DEPS_CFLAGS@
175 GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@
176 GTKDOC_MKPDF = @GTKDOC_MKPDF@
177 GTKDOC_REBASE = @GTKDOC_REBASE@
178 HTML_DIR = @HTML_DIR@
179 INSTALL = @INSTALL@
180 INSTALL_DATA = @INSTALL_DATA@
181 INSTALL_PROGRAM = @INSTALL_PROGRAM@
182 INSTALL_SCRIPT = @INSTALL_SCRIPT@
183 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
184 INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@
185 INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@
186 INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@
187 INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@
188 INTROSPECTION_LIBS = @INTROSPECTION_LIBS@
189 INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@
190 INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@
191 INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@
192 LD = @LD@
193 LDFLAGS = @LDFLAGS@
194 LIBOBJS = @LIBOBJS@
195 LIBS = @LIBS@
196 LIBTOOL = @LIBTOOL@
197 LIBVIRT_CFLAGS = @LIBVIRT_CFLAGS@
198 LIBVIRT_GLIB_MAJOR_VERSION = @LIBVIRT_GLIB_MAJOR_VERSION@
199 LIBVIRT_GLIB_MICRO_VERSION = @LIBVIRT_GLIB_MICRO_VERSION@
200 LIBVIRT_GLIB_MINOR_VERSION = @LIBVIRT_GLIB_MINOR_VERSION@
201 LIBVIRT_GLIB_VERSION = @LIBVIRT_GLIB_VERSION@
202 LIBVIRT_GLIB_VERSION_INFO = @LIBVIRT_GLIB_VERSION_INFO@
203 LIBVIRT_GLIB_VERSION_NUMBER = @LIBVIRT_GLIB_VERSION_NUMBER@
204 LIBVIRT_LIBS = @LIBVIRT_LIBS@
205 LIBVIRT_REQUIRED = @LIBVIRT_REQUIRED@
206 LIBXML2_CFLAGS = @LIBXML2_CFLAGS@
207 LIBXML2_LIBS = @LIBXML2_LIBS@
208 LIPO = @LIPO@
209 LN_S = @LN_S@
210 LTLIBOBJS = @LTLIBOBJS@
211 LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
212 MAKEINFO = @MAKEINFO@
213 MANIFEST_TOOL = @MANIFEST_TOOL@
214 MINGW_EXTRA_LDFLAGS = @MINGW_EXTRA_LDFLAGS@
215 MKDIR_P = @MKDIR_P@
216 MSGFMT = @MSGFMT@
217 MSGMERGE = @MSGMERGE@
218 NM = @NM@
219 NMEDIT = @NMEDIT@
220 OBJDUMP = @OBJDUMP@
221 OBJEXT = @OBJEXT@
222 OTOOL = @OTOOL@
223 OTOOL64 = @OTOOL64@
224 PACKAGE = @PACKAGE@
225 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
226 PACKAGE_NAME = @PACKAGE_NAME@
227 PACKAGE_STRING = @PACKAGE_STRING@
228 PACKAGE_TARNAME = @PACKAGE_TARNAME@
229 PACKAGE_URL = @PACKAGE_URL@
230 PACKAGE_VERSION = @PACKAGE_VERSION@
231 PATH_SEPARATOR = @PATH_SEPARATOR@
232 PERL = @PERL@
233 PKG_CONFIG = @PKG_CONFIG@
234 PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
235 PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
236 RANLIB = @RANLIB@
237 SED = @SED@
238 SET_MAKE = @SET_MAKE@
239 SHELL = @SHELL@
240 STRIP = @STRIP@
241 VAPIGEN = @VAPIGEN@
242 VERSION = @VERSION@
243 WARN_CFLAGS = @WARN_CFLAGS@
244 XGETTEXT = @XGETTEXT@
245 abs_builddir = @abs_builddir@
246 abs_srcdir = @abs_srcdir@
247 abs_top_builddir = @abs_top_builddir@
248 abs_top_srcdir = @abs_top_srcdir@
249 ac_ct_AR = @ac_ct_AR@
250 ac_ct_CC = @ac_ct_CC@
251 ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
252 am__include = @am__include@
253 am__leading_dot = @am__leading_dot@
254 am__quote = @am__quote@
255 am__tar = @am__tar@
256 am__untar = @am__untar@
257 bindir = @bindir@
258 build = @build@
259 build_alias = @build_alias@
260 build_cpu = @build_cpu@
261 build_os = @build_os@
262 build_vendor = @build_vendor@
263 builddir = @builddir@
264 datadir = @datadir@
265 datarootdir = @datarootdir@
266 docdir = @docdir@
267 dvidir = @dvidir@
268 exec_prefix = @exec_prefix@
269 host = @host@
270 host_alias = @host_alias@
271 host_cpu = @host_cpu@
272 host_os = @host_os@
273 host_vendor = @host_vendor@
274 htmldir = @htmldir@
275 includedir = @includedir@
276 infodir = @infodir@
277 install_sh = @install_sh@
278 installed_test_metadir = @installed_test_metadir@
279 installed_testdir = @installed_testdir@
280 libdir = @libdir@
281 libexecdir = @libexecdir@
282 localedir = @localedir@
283 localstatedir = @localstatedir@
284 mandir = @mandir@
285 mkdir_p = @mkdir_p@
286 oldincludedir = @oldincludedir@
287 pdfdir = @pdfdir@
288 prefix = @prefix@
289 program_transform_name = @program_transform_name@
290 psdir = @psdir@
291 sbindir = @sbindir@
292 sharedstatedir = @sharedstatedir@
293 srcdir = @srcdir@
294 sysconfdir = @sysconfdir@
295 target_alias = @target_alias@
296 top_build_prefix = @top_build_prefix@
297 top_builddir = @top_builddir@
298 top_srcdir = @top_srcdir@
299 DOMAIN = $(PACKAGE_NAME)
300 COPYRIGHT_HOLDER = The Libvirt authors
301 MSGID_BUGS_ADDRESS = https://libvirt.org/bugs.html
302 LANGS := \
303 af am anp ar as ast bal be bg bn_IN \
304 bn bo br brx bs ca cs cy da de_CH \
305 de el en_GB eo es et eu fa fi \
306 fr gl gu he hi hr hu ia \
307 id ilo is it ja ka kk km kn ko \
308 kw_GB kw@kkcor kw kw@uccor ky lt lv mai mk ml \
309 mn mr ms nb nds ne nl nn nso \
310 or pa pl pt_BR pt ro ru si sk sl \
311 sq sr@latin sr sv ta te tg th tr tw \
312 uk ur vi wba yo zh_CN zh_HK zh_TW zu
313
314 POTFILE_DEPS := $(shell $(SED) 's,^,$(top_srcdir)/,' $(srcdir)/POTFILES)
315 POTFILE := $(srcdir)/$(DOMAIN).pot
316 POFILES := $(LANGS:%=$(srcdir)/%.po)
317 GMOFILES := $(LANGS:%=$(srcdir)/%.gmo)
318 MAINTAINERCLEANFILES = $(POTFILE) $(POFILES) $(GMOFILES)
319 EXTRA_DIST = \
320 POTFILES \
321 $(POTFILE) \
322 $(POFILES) \
323 $(GMOFILES)
324
325 @HAVE_GNU_GETTEXT_TOOLS_TRUE@XGETTEXT_ARGS = \
326 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ --default-domain=$(DOMAIN) \
327 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ --from-code=utf-8 \
328 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ --add-comments=TRANSLATORS: \
329 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ --keyword=_ --keyword=N_ \
330 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ --copyright-holder='$(COPYRIGHT_HOLDER)' \
331 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ --package-name="$(PACKAGE_NAME)" \
332 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ --package-version="$(PACKAGE_VERSION)" \
333 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ --msgid-bugs-address="$(MSGID_BUGS_ADDRESS)" \
334 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ --directory=$(top_srcdir) \
335 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ $(NULL)
336
337 @HAVE_GNU_GETTEXT_TOOLS_TRUE@SED_PO_FIXUP_ARGS = \
338 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ -e "s|text/plain; charset=CHARSET|text/plain; charset=UTF-8|g" \
339 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ -e "s|SOME DESCRIPTIVE TITLE|Libvirt package strings|g" \
340 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ -e "s|Copyright (C) YEAR|Copyright (C) $$(date +'%Y')|" \
341 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ $(NULL)
342
343
344 # Cannot use 'localedir' since this conflicts with autoconf.
345 @ENABLE_NLS_TRUE@langinstdir = $(datadir)/locale
346 all: all-am
347
348 .SUFFIXES:
349 $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
350 @for dep in $?; do \
351 case '$(am__configure_deps)' in \
352 *$$dep*) \
353 ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
354 && { if test -f $@; then exit 0; else break; fi; }; \
355 exit 1;; \
356 esac; \
357 done; \
358 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu po/Makefile'; \
359 $(am__cd) $(top_srcdir) && \
360 $(AUTOMAKE) --gnu po/Makefile
361 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
362 @case '$?' in \
363 *config.status*) \
364 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
365 *) \
366 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
367 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
368 esac;
369
370 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
371 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
372
373 $(top_srcdir)/configure: $(am__configure_deps)
374 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
375 $(ACLOCAL_M4): $(am__aclocal_m4_deps)
376 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
377 $(am__aclocal_m4_deps):
378
379 mostlyclean-libtool:
380 -rm -f *.lo
381
382 clean-libtool:
383 -rm -rf .libs _libs
384 tags TAGS:
385
386 ctags CTAGS:
387
388 cscope cscopelist:
389
390
391 distdir: $(BUILT_SOURCES)
392 $(MAKE) $(AM_MAKEFLAGS) distdir-am
393
394 distdir-am: $(DISTFILES)
395 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
396 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
397 list='$(DISTFILES)'; \
398 dist_files=`for file in $$list; do echo $$file; done | \
399 sed -e "s|^$$srcdirstrip/||;t" \
400 -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
401 case $$dist_files in \
402 */*) $(MKDIR_P) `echo "$$dist_files" | \
403 sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
404 sort -u` ;; \
405 esac; \
406 for file in $$dist_files; do \
407 if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
408 if test -d $$d/$$file; then \
409 dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
410 if test -d "$(distdir)/$$file"; then \
411 find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
412 fi; \
413 if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
414 cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
415 find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
416 fi; \
417 cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
418 else \
419 test -f "$(distdir)/$$file" \
420 || cp -p $$d/$$file "$(distdir)/$$file" \
421 || exit 1; \
422 fi; \
423 done
424 check-am: all-am
425 check: check-am
426 all-am: Makefile
427 installdirs:
428 install: install-am
429 install-exec: install-exec-am
430 install-data: install-data-am
431 uninstall: uninstall-am
432
433 install-am: all-am
434 @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
435
436 installcheck: installcheck-am
437 install-strip:
438 if test -z '$(STRIP)'; then \
439 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
440 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
441 install; \
442 else \
443 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
444 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
445 "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
446 fi
447 mostlyclean-generic:
448
449 clean-generic:
450
451 distclean-generic:
452 -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
453 -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
454
455 maintainer-clean-generic:
456 @echo "This command is intended for maintainers to use"
457 @echo "it deletes files that may require special tools to rebuild."
458 -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
459 @ENABLE_NLS_FALSE@install-data-hook:
460 @ENABLE_NLS_FALSE@uninstall-hook:
461 clean: clean-am
462
463 clean-am: clean-generic clean-libtool mostlyclean-am
464
465 distclean: distclean-am
466 -rm -f Makefile
467 distclean-am: clean-am distclean-generic
468
469 dvi: dvi-am
470
471 dvi-am:
472
473 html: html-am
474
475 html-am:
476
477 info: info-am
478
479 info-am:
480
481 install-data-am:
482 @$(NORMAL_INSTALL)
483 $(MAKE) $(AM_MAKEFLAGS) install-data-hook
484 install-dvi: install-dvi-am
485
486 install-dvi-am:
487
488 install-exec-am:
489
490 install-html: install-html-am
491
492 install-html-am:
493
494 install-info: install-info-am
495
496 install-info-am:
497
498 install-man:
499
500 install-pdf: install-pdf-am
501
502 install-pdf-am:
503
504 install-ps: install-ps-am
505
506 install-ps-am:
507
508 installcheck-am:
509
510 maintainer-clean: maintainer-clean-am
511 -rm -f Makefile
512 maintainer-clean-am: distclean-am maintainer-clean-generic
513
514 mostlyclean: mostlyclean-am
515
516 mostlyclean-am: mostlyclean-generic mostlyclean-libtool
517
518 pdf: pdf-am
519
520 pdf-am:
521
522 ps: ps-am
523
524 ps-am:
525
526 uninstall-am:
527 @$(NORMAL_INSTALL)
528 $(MAKE) $(AM_MAKEFLAGS) uninstall-hook
529 .MAKE: install-am install-data-am install-strip uninstall-am
530
531 .PHONY: all all-am check check-am clean clean-generic clean-libtool \
532 cscopelist-am ctags-am distclean distclean-generic \
533 distclean-libtool distdir dvi dvi-am html html-am info info-am \
534 install install-am install-data install-data-am \
535 install-data-hook install-dvi install-dvi-am install-exec \
536 install-exec-am install-html install-html-am install-info \
537 install-info-am install-man install-pdf install-pdf-am \
538 install-ps install-ps-am install-strip installcheck \
539 installcheck-am installdirs maintainer-clean \
540 maintainer-clean-generic mostlyclean mostlyclean-generic \
541 mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \
542 uninstall-am uninstall-hook
543
544 .PRECIOUS: Makefile
545
546
547 @HAVE_GNU_GETTEXT_TOOLS_TRUE@update-po: $(POFILES)
548
549 @HAVE_GNU_GETTEXT_TOOLS_TRUE@update-gmo: $(GMOFILES)
550
551 @HAVE_GNU_GETTEXT_TOOLS_TRUE@update-mini-po: $(POTFILE)
552 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ for lang in $(LANGS); do \
553 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ echo "Minimizing $$lang content" && \
554 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ $(MSGMERGE) --no-location --no-fuzzy-matching --sort-output \
555 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ $(srcdir)/$$lang.po $(POTFILE) | \
556 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ $(SED) $(SED_PO_FIXUP_ARGS) | \
557 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ $(PERL) $(top_srcdir)/build-aux/minimize-po.pl > \
558 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ $(srcdir)/$$lang.mini.po ; \
559 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ done
560
561 @HAVE_GNU_GETTEXT_TOOLS_TRUE@push-pot: $(POTFILE)
562 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ zanata push --push-type=source
563
564 @HAVE_GNU_GETTEXT_TOOLS_TRUE@pull-po: $(POTFILE)
565 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ zanata pull --create-skeletons
566 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ $(MAKE) update-mini-po
567 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ $(MAKE) update-gmo
568
569 @HAVE_GNU_GETTEXT_TOOLS_TRUE@$(POTFILE): POTFILES $(POTFILE_DEPS)
570 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ $(XGETTEXT) -o $@-t $(XGETTEXT_ARGS) \
571 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ --files-from=$(abs_srcdir)/POTFILES
572 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ $(SED) $(SED_PO_FIXUP_ARGS) < $@-t > $@
573 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ rm -f $@-t
574
575 @HAVE_GNU_GETTEXT_TOOLS_TRUE@$(srcdir)/%.po: $(srcdir)/%.mini.po $(POTFILE)
576 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ $(MSGMERGE) --no-fuzzy-matching $< $(POTFILE) | \
577 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ $(SED) $(SED_PO_FIXUP_ARGS) > $@
578
579 @HAVE_GNU_GETTEXT_TOOLS_TRUE@$(srcdir)/%.gmo: $(srcdir)/%.po
580 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ rm -f $@ $@-t
581 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ $(MSGFMT) -c -o $@-t $<
582 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ mv $@-t $@
583
584 @HAVE_GNU_GETTEXT_TOOLS_TRUE@.PRECIOUS: $(POTFILE) $(POFILES)
585
586 @ENABLE_NLS_TRUE@install-data-hook: $(GMOFILES)
587 @ENABLE_NLS_TRUE@ mkdir -p $(DESTDIR)$(langinstdir)
588 @ENABLE_NLS_TRUE@ for lang in $(LANGS); do \
589 @ENABLE_NLS_TRUE@ d=$(DESTDIR)$(langinstdir)/$$lang/LC_MESSAGES; \
590 @ENABLE_NLS_TRUE@ mkdir -p $$d; \
591 @ENABLE_NLS_TRUE@ install -m 0644 $(srcdir)/$$lang.gmo $$d/$(DOMAIN).mo; \
592 @ENABLE_NLS_TRUE@ done
593
594 @ENABLE_NLS_TRUE@uninstall-hook:
595 @ENABLE_NLS_TRUE@ for lang in $(LANGS); do \
596 @ENABLE_NLS_TRUE@ d=$(DESTDIR)$(langinstdir)/$$lang/LC_MESSAGES; \
597 @ENABLE_NLS_TRUE@ rm -f $$d/$(DOMAIN).mo; \
598 @ENABLE_NLS_TRUE@ done
599
600 # Tell versions [3.59,3.63) of GNU make to not export all variables.
601 # Otherwise a system limit (for SysV at least) may be exceeded.
602 .NOEXPORT:
+0
-221
po/Makefile.in.in less more
0 # Makefile for program source directory in GNU NLS utilities package.
1 # Copyright (C) 1995, 1996, 1997 by Ulrich Drepper <drepper@gnu.ai.mit.edu>
2 # Copyright (C) 2004-2008 Rodney Dawes <dobey.pwns@gmail.com>
3 #
4 # This file may be copied and used freely without restrictions. It may
5 # be used in projects which are not available under a GNU Public License,
6 # but which still want to provide support for the GNU gettext functionality.
7 #
8 # - Modified by Owen Taylor <otaylor@redhat.com> to use GETTEXT_PACKAGE
9 # instead of PACKAGE and to look for po2tbl in ./ not in intl/
10 #
11 # - Modified by jacob berkman <jacob@ximian.com> to install
12 # Makefile.in.in and po2tbl.sed.in for use with glib-gettextize
13 #
14 # - Modified by Rodney Dawes <dobey.pwns@gmail.com> for use with intltool
15 #
16 # We have the following line for use by intltoolize:
17 # INTLTOOL_MAKEFILE
18
19 GETTEXT_PACKAGE = @GETTEXT_PACKAGE@
20 PACKAGE = @PACKAGE@
21 VERSION = @VERSION@
22
23 SHELL = @SHELL@
24
25 srcdir = @srcdir@
26 top_srcdir = @top_srcdir@
27 top_builddir = @top_builddir@
28 VPATH = @srcdir@
29
30 prefix = @prefix@
31 exec_prefix = @exec_prefix@
32 datadir = @datadir@
33 datarootdir = @datarootdir@
34 libdir = @libdir@
35 localedir = @localedir@
36 subdir = po
37 install_sh = @install_sh@
38 # Automake >= 1.8 provides @mkdir_p@.
39 # Until it can be supposed, use the safe fallback:
40 mkdir_p = $(install_sh) -d
41
42 INSTALL = @INSTALL@
43 INSTALL_DATA = @INSTALL_DATA@
44
45 GMSGFMT = @GMSGFMT@
46 MSGFMT = @MSGFMT@
47 XGETTEXT = @XGETTEXT@
48 INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
49 INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
50 MSGMERGE = INTLTOOL_EXTRACT="$(INTLTOOL_EXTRACT)" XGETTEXT="$(XGETTEXT)" srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --dist
51 GENPOT = INTLTOOL_EXTRACT="$(INTLTOOL_EXTRACT)" XGETTEXT="$(XGETTEXT)" srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --pot
52
53 ALL_LINGUAS = @ALL_LINGUAS@
54
55 PO_LINGUAS=$(shell if test -r $(srcdir)/LINGUAS; then grep -v "^\#" $(srcdir)/LINGUAS; else echo "$(ALL_LINGUAS)"; fi)
56
57 USER_LINGUAS=$(shell if test -n "$(LINGUAS)"; then LLINGUAS="$(LINGUAS)"; ALINGUAS="$(ALL_LINGUAS)"; for lang in $$LLINGUAS; do if test -n "`grep \^$$lang$$ $(srcdir)/LINGUAS 2>/dev/null`" -o -n "`echo $$ALINGUAS|tr ' ' '\n'|grep \^$$lang$$`"; then printf "$$lang "; fi; done; fi)
58
59 USE_LINGUAS=$(shell if test -n "$(USER_LINGUAS)" -o -n "$(LINGUAS)"; then LLINGUAS="$(USER_LINGUAS)"; else if test -n "$(PO_LINGUAS)"; then LLINGUAS="$(PO_LINGUAS)"; else LLINGUAS="$(ALL_LINGUAS)"; fi; fi; for lang in $$LLINGUAS; do printf "$$lang "; done)
60
61 POFILES=$(shell LINGUAS="$(PO_LINGUAS)"; for lang in $$LINGUAS; do printf "$$lang.po "; done)
62
63 DISTFILES = Makefile.in.in POTFILES.in $(POFILES)
64 EXTRA_DISTFILES = ChangeLog POTFILES.skip Makevars LINGUAS
65
66 POTFILES = \
67 # This comment gets stripped out
68
69 CATALOGS=$(shell LINGUAS="$(USE_LINGUAS)"; for lang in $$LINGUAS; do printf "$$lang.gmo "; done)
70
71 .SUFFIXES:
72 .SUFFIXES: .po .pox .gmo .mo .msg .cat
73
74 AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
75 INTLTOOL_V_MSGFMT = $(INTLTOOL__v_MSGFMT_$(V))
76 INTLTOOL__v_MSGFMT_= $(INTLTOOL__v_MSGFMT_$(AM_DEFAULT_VERBOSITY))
77 INTLTOOL__v_MSGFMT_0 = @echo " MSGFMT" $@;
78
79 .po.pox:
80 $(MAKE) $(GETTEXT_PACKAGE).pot
81 $(MSGMERGE) $* $(GETTEXT_PACKAGE).pot -o $*.pox
82
83 .po.mo:
84 $(INTLTOOL_V_MSGFMT)$(MSGFMT) -o $@ $<
85
86 .po.gmo:
87 $(INTLTOOL_V_MSGFMT)file=`echo $* | sed 's,.*/,,'`.gmo \
88 && rm -f $$file && $(GMSGFMT) -o $$file $<
89
90 .po.cat:
91 sed -f ../intl/po2msg.sed < $< > $*.msg \
92 && rm -f $@ && gencat $@ $*.msg
93
94
95 all: all-@USE_NLS@
96
97 all-yes: $(CATALOGS)
98 all-no:
99
100 $(GETTEXT_PACKAGE).pot: $(POTFILES)
101 $(GENPOT)
102
103 install: install-data
104 install-data: install-data-@USE_NLS@
105 install-data-no: all
106 install-data-yes: all
107 linguas="$(USE_LINGUAS)"; \
108 for lang in $$linguas; do \
109 dir=$(DESTDIR)$(localedir)/$$lang/LC_MESSAGES; \
110 $(mkdir_p) $$dir; \
111 if test -r $$lang.gmo; then \
112 $(INSTALL_DATA) $$lang.gmo $$dir/$(GETTEXT_PACKAGE).mo; \
113 echo "installing $$lang.gmo as $$dir/$(GETTEXT_PACKAGE).mo"; \
114 else \
115 $(INSTALL_DATA) $(srcdir)/$$lang.gmo $$dir/$(GETTEXT_PACKAGE).mo; \
116 echo "installing $(srcdir)/$$lang.gmo as" \
117 "$$dir/$(GETTEXT_PACKAGE).mo"; \
118 fi; \
119 if test -r $$lang.gmo.m; then \
120 $(INSTALL_DATA) $$lang.gmo.m $$dir/$(GETTEXT_PACKAGE).mo.m; \
121 echo "installing $$lang.gmo.m as $$dir/$(GETTEXT_PACKAGE).mo.m"; \
122 else \
123 if test -r $(srcdir)/$$lang.gmo.m ; then \
124 $(INSTALL_DATA) $(srcdir)/$$lang.gmo.m \
125 $$dir/$(GETTEXT_PACKAGE).mo.m; \
126 echo "installing $(srcdir)/$$lang.gmo.m as" \
127 "$$dir/$(GETTEXT_PACKAGE).mo.m"; \
128 else \
129 true; \
130 fi; \
131 fi; \
132 done
133
134 # Empty stubs to satisfy archaic automake needs
135 dvi info ctags tags CTAGS TAGS ID:
136
137 # Define this as empty until I found a useful application.
138 install-exec installcheck:
139
140 uninstall:
141 linguas="$(USE_LINGUAS)"; \
142 for lang in $$linguas; do \
143 rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo; \
144 rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo.m; \
145 done
146
147 check: all $(GETTEXT_PACKAGE).pot
148 rm -f missing notexist
149 srcdir=$(srcdir) $(INTLTOOL_UPDATE) -m
150 if [ -r missing -o -r notexist ]; then \
151 exit 1; \
152 fi
153
154 mostlyclean:
155 rm -f *.pox $(GETTEXT_PACKAGE).pot *.old.po cat-id-tbl.tmp
156 rm -f .intltool-merge-cache
157
158 clean: mostlyclean
159
160 distclean: clean
161 rm -f Makefile Makefile.in POTFILES stamp-it
162 rm -f *.mo *.msg *.cat *.cat.m *.gmo
163
164 maintainer-clean: distclean
165 @echo "This command is intended for maintainers to use;"
166 @echo "it deletes files that may require special tools to rebuild."
167 rm -f Makefile.in.in
168
169 distdir = ../$(PACKAGE)-$(VERSION)/$(subdir)
170 dist distdir: $(DISTFILES)
171 dists="$(DISTFILES)"; \
172 extra_dists="$(EXTRA_DISTFILES)"; \
173 for file in $$extra_dists; do \
174 test -f $(srcdir)/$$file && dists="$$dists $(srcdir)/$$file"; \
175 done; \
176 for file in $$dists; do \
177 test -f $$file || file="$(srcdir)/$$file"; \
178 ln $$file $(distdir) 2> /dev/null \
179 || cp -p $$file $(distdir); \
180 done
181
182 update-po: Makefile
183 $(MAKE) $(GETTEXT_PACKAGE).pot
184 tmpdir=`pwd`; \
185 linguas="$(USE_LINGUAS)"; \
186 for lang in $$linguas; do \
187 echo "$$lang:"; \
188 result="`$(MSGMERGE) -o $$tmpdir/$$lang.new.po $$lang`"; \
189 if $$result; then \
190 if cmp $(srcdir)/$$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \
191 rm -f $$tmpdir/$$lang.new.po; \
192 else \
193 if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \
194 :; \
195 else \
196 echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \
197 rm -f $$tmpdir/$$lang.new.po; \
198 exit 1; \
199 fi; \
200 fi; \
201 else \
202 echo "msgmerge for $$lang.gmo failed!"; \
203 rm -f $$tmpdir/$$lang.new.po; \
204 fi; \
205 done
206
207 Makefile POTFILES: stamp-it
208 @if test ! -f $@; then \
209 rm -f stamp-it; \
210 $(MAKE) stamp-it; \
211 fi
212
213 stamp-it: Makefile.in.in $(top_builddir)/config.status POTFILES.in
214 cd $(top_builddir) \
215 && CONFIG_FILES=$(subdir)/Makefile.in CONFIG_HEADERS= CONFIG_LINKS= \
216 $(SHELL) ./config.status
217
218 # Tell versions [3.59,3.63) of GNU make not to export all variables.
219 # Otherwise a system limit (for SysV at least) may be exceeded.
220 .NOEXPORT:
0 libvirt-gconfig/libvirt-gconfig-helpers.c
1 libvirt-gconfig/libvirt-gconfig-object.c
2 libvirt-gobject/libvirt-gobject-connection.c
3 libvirt-gobject/libvirt-gobject-stream.c
+0
-4
po/POTFILES.in less more
0 libvirt-gconfig/libvirt-gconfig-helpers.c
1 libvirt-gconfig/libvirt-gconfig-object.c
2 libvirt-gobject/libvirt-gobject-connection.c
3 libvirt-gobject/libvirt-gobject-stream.c
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:19+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Afrikaans (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:19+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Amharic (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Libvirt package strings.
1 # Copyright (C) 2019 The Libvirt authors
2 # This file is distributed under the same license as the libvirt-glib package.
3 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
34 #
4 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Angika\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=2; plural=(n != 1)\n"
18 "X-Generator: Zanata 3.6.2\n"
18 "X-Generator: Zanata 4.6.2\n"
1919
20 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2121 msgid "No XML document to parse"
2222 msgstr ""
2323
24 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2525 msgid "Unable to parse configuration"
2626 msgstr ""
2727
28 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
2929 #, c-format
3030 msgid "XML data has no '%s' node"
3131 msgstr ""
3232
33 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
33 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3434 msgid "No XML document associated with this config object"
3535 msgstr ""
3636
37 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
37 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3838 msgid "No XML schema associated with this config object"
3939 msgstr ""
4040
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
41 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4242 #, c-format
4343 msgid "Unable to create RNG parser for %s"
4444 msgstr ""
4545
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
46 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4747 #, c-format
4848 msgid "Unable to parse RNG %s"
4949 msgstr ""
5050
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
51 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5252 #, c-format
5353 msgid "Unable to create RNG validation context %s"
5454 msgstr ""
5555
56 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
56 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5757 msgid "Unable to validate doc"
5858 msgstr ""
5959
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
60 #: libvirt-gobject/libvirt-gobject-connection.c:438
6161 #, c-format
6262 msgid "Connection %s is already open"
6363 msgstr ""
6464
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
65 #: libvirt-gobject/libvirt-gobject-connection.c:453
6666 #, c-format
6767 msgid "Unable to open %s"
6868 msgstr ""
6969
70 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
70 #: libvirt-gobject/libvirt-gobject-connection.c:464
7171 msgid "Unable to get connection URI"
7272 msgstr ""
7373
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
74 #: libvirt-gobject/libvirt-gobject-connection.c:729
75 #: libvirt-gobject/libvirt-gobject-connection.c:817
76 #: libvirt-gobject/libvirt-gobject-connection.c:1504
77 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7878 msgid "Connection is not open"
7979 msgstr ""
8080
81 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
81 #: libvirt-gobject/libvirt-gobject-connection.c:742
8282 msgid "Failed to fetch list of domains"
8383 msgstr ""
8484
85 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
85 #: libvirt-gobject/libvirt-gobject-connection.c:833
8686 msgid "Failed to fetch list of pools"
8787 msgstr ""
8888
89 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
89 #: libvirt-gobject/libvirt-gobject-connection.c:1034
90 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9191 msgid "Connection is not opened"
9292 msgstr ""
9393
94 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
94 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9595 msgid "Unable to get hypervisor name"
9696 msgstr ""
9797
98 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
98 #: libvirt-gobject/libvirt-gobject-connection.c:1079
9999 msgid "Unable to get hypervisor version"
100100 msgstr ""
101101
102 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
102 #: libvirt-gobject/libvirt-gobject-connection.c:1394
103 #: libvirt-gobject/libvirt-gobject-connection.c:1449
104104 msgid "Failed to create domain"
105105 msgstr ""
106106
107 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
107 #: libvirt-gobject/libvirt-gobject-connection.c:1520
108108 msgid "Failed to fetch list of interfaces"
109109 msgstr ""
110110
111 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
111 #: libvirt-gobject/libvirt-gobject-connection.c:1777
112112 msgid "Failed to fetch list of networks"
113113 msgstr ""
114114
115 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
115 #: libvirt-gobject/libvirt-gobject-connection.c:2020
116116 msgid "Failed to create storage pool"
117117 msgstr ""
118118
119 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
119 #: libvirt-gobject/libvirt-gobject-connection.c:2063
120120 msgid "Unable to get node info"
121121 msgstr ""
122122
123 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
123 #: libvirt-gobject/libvirt-gobject-connection.c:2119
124 msgid "Unable to get domain capabilities"
125 msgstr ""
126
127 #: libvirt-gobject/libvirt-gobject-connection.c:2271
124128 msgid "Unable to get capabilities"
125129 msgstr ""
126130
127 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
131 #: libvirt-gobject/libvirt-gobject-connection.c:2395
128132 msgid "Unable to restore domain"
129133 msgstr ""
130134
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
135 #: libvirt-gobject/libvirt-gobject-stream.c:347
132136 msgid "virStreamRecv call would block"
133137 msgstr ""
134138
135 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
139 #: libvirt-gobject/libvirt-gobject-stream.c:350
140 #: libvirt-gobject/libvirt-gobject-stream.c:466
137141 #, c-format
138142 msgid "Got virStreamRecv error in %s"
139143 msgstr ""
140144
141 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
145 #: libvirt-gobject/libvirt-gobject-stream.c:415
142146 msgid "Unable to perform RecvAll"
143147 msgstr ""
144148
145 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
149 #: libvirt-gobject/libvirt-gobject-stream.c:463
146150 msgid "virStreamSend call would block"
147151 msgstr ""
148152
149 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
153 #: libvirt-gobject/libvirt-gobject-stream.c:531
150154 msgid "Unable to perform SendAll"
151155 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:19+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Arabic (http://www.transifex.com/projects/p/libvirt-glib/"
1919 "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
2020 "X-Generator: Zanata 4.6.2\n"
2121
22 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
22 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2323 msgid "No XML document to parse"
2424 msgstr ""
2525
26 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
26 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2727 msgid "Unable to parse configuration"
2828 msgstr ""
2929
30 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
30 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3131 #, c-format
3232 msgid "XML data has no '%s' node"
3333 msgstr ""
3434
35 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
35 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3636 msgid "No XML document associated with this config object"
3737 msgstr ""
3838
39 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
39 #: libvirt-gconfig/libvirt-gconfig-object.c:214
4040 msgid "No XML schema associated with this config object"
4141 msgstr ""
4242
43 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
43 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4444 #, c-format
4545 msgid "Unable to create RNG parser for %s"
4646 msgstr ""
4747
48 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
48 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4949 #, c-format
5050 msgid "Unable to parse RNG %s"
5151 msgstr ""
5252
53 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
53 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5454 #, c-format
5555 msgid "Unable to create RNG validation context %s"
5656 msgstr ""
5757
58 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
58 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5959 msgid "Unable to validate doc"
6060 msgstr ""
6161
62 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
62 #: libvirt-gobject/libvirt-gobject-connection.c:438
6363 #, c-format
6464 msgid "Connection %s is already open"
6565 msgstr ""
6666
67 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
67 #: libvirt-gobject/libvirt-gobject-connection.c:453
6868 #, c-format
6969 msgid "Unable to open %s"
7070 msgstr ""
7171
72 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
72 #: libvirt-gobject/libvirt-gobject-connection.c:464
7373 msgid "Unable to get connection URI"
7474 msgstr ""
7575
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
76 #: libvirt-gobject/libvirt-gobject-connection.c:729
77 #: libvirt-gobject/libvirt-gobject-connection.c:817
78 #: libvirt-gobject/libvirt-gobject-connection.c:1504
79 #: libvirt-gobject/libvirt-gobject-connection.c:1761
8080 msgid "Connection is not open"
8181 msgstr ""
8282
83 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
83 #: libvirt-gobject/libvirt-gobject-connection.c:742
8484 msgid "Failed to fetch list of domains"
8585 msgstr ""
8686
87 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
87 #: libvirt-gobject/libvirt-gobject-connection.c:833
8888 msgid "Failed to fetch list of pools"
8989 msgstr ""
9090
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
91 #: libvirt-gobject/libvirt-gobject-connection.c:1034
92 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9393 msgid "Connection is not opened"
9494 msgstr ""
9595
96 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
96 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9797 msgid "Unable to get hypervisor name"
9898 msgstr ""
9999
100 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
100 #: libvirt-gobject/libvirt-gobject-connection.c:1079
101101 msgid "Unable to get hypervisor version"
102102 msgstr ""
103103
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
104 #: libvirt-gobject/libvirt-gobject-connection.c:1394
105 #: libvirt-gobject/libvirt-gobject-connection.c:1449
106106 msgid "Failed to create domain"
107107 msgstr ""
108108
109 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
109 #: libvirt-gobject/libvirt-gobject-connection.c:1520
110110 msgid "Failed to fetch list of interfaces"
111111 msgstr ""
112112
113 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
113 #: libvirt-gobject/libvirt-gobject-connection.c:1777
114114 msgid "Failed to fetch list of networks"
115115 msgstr ""
116116
117 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
117 #: libvirt-gobject/libvirt-gobject-connection.c:2020
118118 msgid "Failed to create storage pool"
119119 msgstr ""
120120
121 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
121 #: libvirt-gobject/libvirt-gobject-connection.c:2063
122122 msgid "Unable to get node info"
123123 msgstr ""
124124
125 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
125 #: libvirt-gobject/libvirt-gobject-connection.c:2119
126 msgid "Unable to get domain capabilities"
127 msgstr ""
128
129 #: libvirt-gobject/libvirt-gobject-connection.c:2271
126130 msgid "Unable to get capabilities"
127131 msgstr ""
128132
129 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
133 #: libvirt-gobject/libvirt-gobject-connection.c:2395
130134 msgid "Unable to restore domain"
131135 msgstr ""
132136
133 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
137 #: libvirt-gobject/libvirt-gobject-stream.c:347
134138 msgid "virStreamRecv call would block"
135139 msgstr ""
136140
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
138 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
141 #: libvirt-gobject/libvirt-gobject-stream.c:350
142 #: libvirt-gobject/libvirt-gobject-stream.c:466
139143 #, c-format
140144 msgid "Got virStreamRecv error in %s"
141145 msgstr ""
142146
143 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
147 #: libvirt-gobject/libvirt-gobject-stream.c:415
144148 msgid "Unable to perform RecvAll"
145149 msgstr ""
146150
147 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
151 #: libvirt-gobject/libvirt-gobject-stream.c:463
148152 msgid "virStreamSend call would block"
149153 msgstr ""
150154
151 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
155 #: libvirt-gobject/libvirt-gobject-stream.c:531
152156 msgid "Unable to perform SendAll"
153157 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:19+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Assamese (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:19+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Asturian (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:19+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Balochi (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:19+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Belarusian (http://www.transifex.com/projects/p/libvirt-glib/"
1919 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
2020 "X-Generator: Zanata 4.6.2\n"
2121
22 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
22 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2323 msgid "No XML document to parse"
2424 msgstr ""
2525
26 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
26 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2727 msgid "Unable to parse configuration"
2828 msgstr ""
2929
30 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
30 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3131 #, c-format
3232 msgid "XML data has no '%s' node"
3333 msgstr ""
3434
35 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
35 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3636 msgid "No XML document associated with this config object"
3737 msgstr ""
3838
39 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
39 #: libvirt-gconfig/libvirt-gconfig-object.c:214
4040 msgid "No XML schema associated with this config object"
4141 msgstr ""
4242
43 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
43 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4444 #, c-format
4545 msgid "Unable to create RNG parser for %s"
4646 msgstr ""
4747
48 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
48 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4949 #, c-format
5050 msgid "Unable to parse RNG %s"
5151 msgstr ""
5252
53 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
53 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5454 #, c-format
5555 msgid "Unable to create RNG validation context %s"
5656 msgstr ""
5757
58 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
58 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5959 msgid "Unable to validate doc"
6060 msgstr ""
6161
62 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
62 #: libvirt-gobject/libvirt-gobject-connection.c:438
6363 #, c-format
6464 msgid "Connection %s is already open"
6565 msgstr ""
6666
67 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
67 #: libvirt-gobject/libvirt-gobject-connection.c:453
6868 #, c-format
6969 msgid "Unable to open %s"
7070 msgstr ""
7171
72 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
72 #: libvirt-gobject/libvirt-gobject-connection.c:464
7373 msgid "Unable to get connection URI"
7474 msgstr ""
7575
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
76 #: libvirt-gobject/libvirt-gobject-connection.c:729
77 #: libvirt-gobject/libvirt-gobject-connection.c:817
78 #: libvirt-gobject/libvirt-gobject-connection.c:1504
79 #: libvirt-gobject/libvirt-gobject-connection.c:1761
8080 msgid "Connection is not open"
8181 msgstr ""
8282
83 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
83 #: libvirt-gobject/libvirt-gobject-connection.c:742
8484 msgid "Failed to fetch list of domains"
8585 msgstr ""
8686
87 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
87 #: libvirt-gobject/libvirt-gobject-connection.c:833
8888 msgid "Failed to fetch list of pools"
8989 msgstr ""
9090
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
91 #: libvirt-gobject/libvirt-gobject-connection.c:1034
92 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9393 msgid "Connection is not opened"
9494 msgstr ""
9595
96 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
96 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9797 msgid "Unable to get hypervisor name"
9898 msgstr ""
9999
100 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
100 #: libvirt-gobject/libvirt-gobject-connection.c:1079
101101 msgid "Unable to get hypervisor version"
102102 msgstr ""
103103
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
104 #: libvirt-gobject/libvirt-gobject-connection.c:1394
105 #: libvirt-gobject/libvirt-gobject-connection.c:1449
106106 msgid "Failed to create domain"
107107 msgstr ""
108108
109 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
109 #: libvirt-gobject/libvirt-gobject-connection.c:1520
110110 msgid "Failed to fetch list of interfaces"
111111 msgstr ""
112112
113 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
113 #: libvirt-gobject/libvirt-gobject-connection.c:1777
114114 msgid "Failed to fetch list of networks"
115115 msgstr ""
116116
117 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
117 #: libvirt-gobject/libvirt-gobject-connection.c:2020
118118 msgid "Failed to create storage pool"
119119 msgstr ""
120120
121 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
121 #: libvirt-gobject/libvirt-gobject-connection.c:2063
122122 msgid "Unable to get node info"
123123 msgstr ""
124124
125 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
125 #: libvirt-gobject/libvirt-gobject-connection.c:2119
126 msgid "Unable to get domain capabilities"
127 msgstr ""
128
129 #: libvirt-gobject/libvirt-gobject-connection.c:2271
126130 msgid "Unable to get capabilities"
127131 msgstr ""
128132
129 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
133 #: libvirt-gobject/libvirt-gobject-connection.c:2395
130134 msgid "Unable to restore domain"
131135 msgstr ""
132136
133 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
137 #: libvirt-gobject/libvirt-gobject-stream.c:347
134138 msgid "virStreamRecv call would block"
135139 msgstr ""
136140
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
138 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
141 #: libvirt-gobject/libvirt-gobject-stream.c:350
142 #: libvirt-gobject/libvirt-gobject-stream.c:466
139143 #, c-format
140144 msgid "Got virStreamRecv error in %s"
141145 msgstr ""
142146
143 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
147 #: libvirt-gobject/libvirt-gobject-stream.c:415
144148 msgid "Unable to perform RecvAll"
145149 msgstr ""
146150
147 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
151 #: libvirt-gobject/libvirt-gobject-stream.c:463
148152 msgid "virStreamSend call would block"
149153 msgstr ""
150154
151 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
155 #: libvirt-gobject/libvirt-gobject-stream.c:531
152156 msgid "Unable to perform SendAll"
153157 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:19+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Bulgarian (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:19+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Bengali (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:19+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Bengali (India) (http://www.transifex.com/projects/p/libvirt-"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:19+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Tibetan (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=1; plural=0;\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:19+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Breton (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:19+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Bodo (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:19+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Bosnian (http://www.transifex.com/projects/p/libvirt-glib/"
1919 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
2020 "X-Generator: Zanata 4.6.2\n"
2121
22 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
22 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2323 msgid "No XML document to parse"
2424 msgstr ""
2525
26 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
26 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2727 msgid "Unable to parse configuration"
2828 msgstr ""
2929
30 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
30 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3131 #, c-format
3232 msgid "XML data has no '%s' node"
3333 msgstr ""
3434
35 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
35 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3636 msgid "No XML document associated with this config object"
3737 msgstr ""
3838
39 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
39 #: libvirt-gconfig/libvirt-gconfig-object.c:214
4040 msgid "No XML schema associated with this config object"
4141 msgstr ""
4242
43 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
43 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4444 #, c-format
4545 msgid "Unable to create RNG parser for %s"
4646 msgstr ""
4747
48 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
48 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4949 #, c-format
5050 msgid "Unable to parse RNG %s"
5151 msgstr ""
5252
53 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
53 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5454 #, c-format
5555 msgid "Unable to create RNG validation context %s"
5656 msgstr ""
5757
58 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
58 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5959 msgid "Unable to validate doc"
6060 msgstr ""
6161
62 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
62 #: libvirt-gobject/libvirt-gobject-connection.c:438
6363 #, c-format
6464 msgid "Connection %s is already open"
6565 msgstr ""
6666
67 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
67 #: libvirt-gobject/libvirt-gobject-connection.c:453
6868 #, c-format
6969 msgid "Unable to open %s"
7070 msgstr ""
7171
72 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
72 #: libvirt-gobject/libvirt-gobject-connection.c:464
7373 msgid "Unable to get connection URI"
7474 msgstr ""
7575
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
76 #: libvirt-gobject/libvirt-gobject-connection.c:729
77 #: libvirt-gobject/libvirt-gobject-connection.c:817
78 #: libvirt-gobject/libvirt-gobject-connection.c:1504
79 #: libvirt-gobject/libvirt-gobject-connection.c:1761
8080 msgid "Connection is not open"
8181 msgstr ""
8282
83 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
83 #: libvirt-gobject/libvirt-gobject-connection.c:742
8484 msgid "Failed to fetch list of domains"
8585 msgstr ""
8686
87 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
87 #: libvirt-gobject/libvirt-gobject-connection.c:833
8888 msgid "Failed to fetch list of pools"
8989 msgstr ""
9090
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
91 #: libvirt-gobject/libvirt-gobject-connection.c:1034
92 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9393 msgid "Connection is not opened"
9494 msgstr ""
9595
96 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
96 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9797 msgid "Unable to get hypervisor name"
9898 msgstr ""
9999
100 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
100 #: libvirt-gobject/libvirt-gobject-connection.c:1079
101101 msgid "Unable to get hypervisor version"
102102 msgstr ""
103103
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
104 #: libvirt-gobject/libvirt-gobject-connection.c:1394
105 #: libvirt-gobject/libvirt-gobject-connection.c:1449
106106 msgid "Failed to create domain"
107107 msgstr ""
108108
109 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
109 #: libvirt-gobject/libvirt-gobject-connection.c:1520
110110 msgid "Failed to fetch list of interfaces"
111111 msgstr ""
112112
113 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
113 #: libvirt-gobject/libvirt-gobject-connection.c:1777
114114 msgid "Failed to fetch list of networks"
115115 msgstr ""
116116
117 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
117 #: libvirt-gobject/libvirt-gobject-connection.c:2020
118118 msgid "Failed to create storage pool"
119119 msgstr ""
120120
121 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
121 #: libvirt-gobject/libvirt-gobject-connection.c:2063
122122 msgid "Unable to get node info"
123123 msgstr ""
124124
125 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
125 #: libvirt-gobject/libvirt-gobject-connection.c:2119
126 msgid "Unable to get domain capabilities"
127 msgstr ""
128
129 #: libvirt-gobject/libvirt-gobject-connection.c:2271
126130 msgid "Unable to get capabilities"
127131 msgstr ""
128132
129 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
133 #: libvirt-gobject/libvirt-gobject-connection.c:2395
130134 msgid "Unable to restore domain"
131135 msgstr ""
132136
133 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
137 #: libvirt-gobject/libvirt-gobject-stream.c:347
134138 msgid "virStreamRecv call would block"
135139 msgstr ""
136140
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
138 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
141 #: libvirt-gobject/libvirt-gobject-stream.c:350
142 #: libvirt-gobject/libvirt-gobject-stream.c:466
139143 #, c-format
140144 msgid "Got virStreamRecv error in %s"
141145 msgstr ""
142146
143 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
147 #: libvirt-gobject/libvirt-gobject-stream.c:415
144148 msgid "Unable to perform RecvAll"
145149 msgstr ""
146150
147 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
151 #: libvirt-gobject/libvirt-gobject-stream.c:463
148152 msgid "virStreamSend call would block"
149153 msgstr ""
150154
151 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
155 #: libvirt-gobject/libvirt-gobject-stream.c:531
152156 msgid "Unable to perform SendAll"
153157 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
77 # Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>, 2017. #zanata
88 msgid ""
99 msgstr ""
10 "Project-Id-Version: PACKAGE VERSION\n"
11 "Report-Msgid-Bugs-To: \n"
12 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
10 "Project-Id-Version: libvirt-glib 2.0.0\n"
11 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
12 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1313 "PO-Revision-Date: 2017-12-17 03:08+0000\n"
1414 "Last-Translator: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>\n"
1515 "Language-Team: Catalan (http://www.transifex.com/projects/p/libvirt-glib/"
2121 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
2222 "X-Generator: Zanata 4.6.2\n"
2323
24 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
24 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2525 msgid "No XML document to parse"
2626 msgstr "Cap document XML per analitzar sintàcticament"
2727
28 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
28 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2929 msgid "Unable to parse configuration"
3030 msgstr "No es pot analitzar sintàcticament"
3131
32 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
32 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3333 #, c-format
3434 msgid "XML data has no '%s' node"
3535 msgstr "Les dades del XML no tenen cap node «%s»"
3636
37 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
37 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3838 msgid "No XML document associated with this config object"
3939 msgstr ""
4040 "Cap document XML que estigui associat amb aquest objecte de configuració"
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
42 #: libvirt-gconfig/libvirt-gconfig-object.c:214
4343 msgid "No XML schema associated with this config object"
4444 msgstr ""
4545 "Cap esquema XML que estigui associat amb aquest objecte de configuració"
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
47 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4848 #, c-format
4949 msgid "Unable to create RNG parser for %s"
5050 msgstr "No es pot crear l'analitzador sintàctic RNG per %s"
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
52 #: libvirt-gconfig/libvirt-gconfig-object.c:233
5353 #, c-format
5454 msgid "Unable to parse RNG %s"
5555 msgstr "No es pot analitzar sintàcticament el RNG %s"
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
57 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5858 #, c-format
5959 msgid "Unable to create RNG validation context %s"
6060 msgstr "No es pot crear la validació del context del RNG %s"
6161
62 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
62 #: libvirt-gconfig/libvirt-gconfig-object.c:255
6363 msgid "Unable to validate doc"
6464 msgstr "No es pot validar el document"
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
66 #: libvirt-gobject/libvirt-gobject-connection.c:438
6767 #, c-format
6868 msgid "Connection %s is already open"
6969 msgstr "La connexió %s ja està oberta"
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
71 #: libvirt-gobject/libvirt-gobject-connection.c:453
7272 #, c-format
7373 msgid "Unable to open %s"
7474 msgstr "No es pot obrir %s"
7575
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
76 #: libvirt-gobject/libvirt-gobject-connection.c:464
7777 msgid "Unable to get connection URI"
7878 msgstr "No es pot obtenir la URI de la connexió"
7979
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
81 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
83 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
80 #: libvirt-gobject/libvirt-gobject-connection.c:729
81 #: libvirt-gobject/libvirt-gobject-connection.c:817
82 #: libvirt-gobject/libvirt-gobject-connection.c:1504
83 #: libvirt-gobject/libvirt-gobject-connection.c:1761
8484 msgid "Connection is not open"
8585 msgstr "La connexió no és oberta"
8686
87 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
87 #: libvirt-gobject/libvirt-gobject-connection.c:742
8888 msgid "Failed to fetch list of domains"
8989 msgstr "No s'ha pogut capturar la llista dels dominis"
9090
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
91 #: libvirt-gobject/libvirt-gobject-connection.c:833
9292 msgid "Failed to fetch list of pools"
9393 msgstr "No s'ha pogut capturar la llista de les reserves"
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
96 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
95 #: libvirt-gobject/libvirt-gobject-connection.c:1034
96 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9797 msgid "Connection is not opened"
9898 msgstr "La connexió no està oberta"
9999
100 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
100 #: libvirt-gobject/libvirt-gobject-connection.c:1041
101101 msgid "Unable to get hypervisor name"
102102 msgstr "No es pot obtenir el nom de l'hipervisor"
103103
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
104 #: libvirt-gobject/libvirt-gobject-connection.c:1079
105105 msgid "Unable to get hypervisor version"
106106 msgstr "No es pot obtenir la versió de l'hipervisor"
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
109 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
108 #: libvirt-gobject/libvirt-gobject-connection.c:1394
109 #: libvirt-gobject/libvirt-gobject-connection.c:1449
110110 msgid "Failed to create domain"
111111 msgstr "La creació del domini ha fallat"
112112
113 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
113 #: libvirt-gobject/libvirt-gobject-connection.c:1520
114114 msgid "Failed to fetch list of interfaces"
115115 msgstr "No s'ha pogut capturar la llista de les interfícies"
116116
117 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
117 #: libvirt-gobject/libvirt-gobject-connection.c:1777
118118 msgid "Failed to fetch list of networks"
119119 msgstr "No s'ha pogut capturar la llista de les xarxes"
120120
121 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
121 #: libvirt-gobject/libvirt-gobject-connection.c:2020
122122 msgid "Failed to create storage pool"
123123 msgstr "La creació de la reserva de l'emmagatzematge ha fallat"
124124
125 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
125 #: libvirt-gobject/libvirt-gobject-connection.c:2063
126126 msgid "Unable to get node info"
127127 msgstr "No es pot obtenir la informació del node"
128128
129 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
129 #: libvirt-gobject/libvirt-gobject-connection.c:2119
130 msgid "Unable to get domain capabilities"
131 msgstr ""
132
133 #: libvirt-gobject/libvirt-gobject-connection.c:2271
130134 msgid "Unable to get capabilities"
131135 msgstr "No es poden obtenir les capacitats"
132136
133 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
137 #: libvirt-gobject/libvirt-gobject-connection.c:2395
134138 msgid "Unable to restore domain"
135139 msgstr "No es pot restaurar el domini"
136140
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
141 #: libvirt-gobject/libvirt-gobject-stream.c:347
138142 msgid "virStreamRecv call would block"
139143 msgstr "La crida a virStreamRecv podria bloquejar"
140144
141 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
145 #: libvirt-gobject/libvirt-gobject-stream.c:350
146 #: libvirt-gobject/libvirt-gobject-stream.c:466
143147 #, c-format
144148 msgid "Got virStreamRecv error in %s"
145149 msgstr "Es va obtenir un error en virStreamRecv a %s"
146150
147 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
151 #: libvirt-gobject/libvirt-gobject-stream.c:415
148152 msgid "Unable to perform RecvAll"
149153 msgstr "No es pot realitzar RecvAll"
150154
151 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
155 #: libvirt-gobject/libvirt-gobject-stream.c:463
152156 msgid "virStreamSend call would block"
153157 msgstr "La crida a virStreamSend podria bloquejar"
154158
155 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
159 #: libvirt-gobject/libvirt-gobject-stream.c:531
156160 msgid "Unable to perform SendAll"
157161 msgstr "No es pot realitzar SendAll"
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 # Zdenek <chmelarz@gmail.com>, 2016. #zanata
6 # Zdenek <chmelarz@gmail.com>, 2018. #zanata
6 # Pavel Borecki <pavel.borecki@gmail.com>, 2018. #zanata
77 msgid ""
88 msgstr ""
9 "Project-Id-Version: PACKAGE VERSION\n"
10 "Report-Msgid-Bugs-To: \n"
11 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
12 "PO-Revision-Date: 2018-02-21 11:08+0000\n"
13 "Last-Translator: Zdenek <chmelarz@gmail.com>\n"
9 "Project-Id-Version: libvirt-glib 2.0.0\n"
10 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
11 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
12 "PO-Revision-Date: 2018-11-27 06:44+0000\n"
13 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>\n"
1414 "Language-Team: Czech (http://www.transifex.com/projects/p/libvirt-glib/"
1515 "language/cs/)\n"
1616 "Language: cs\n"
2020 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
2121 "X-Generator: Zanata 4.6.2\n"
2222
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
23 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2424 msgid "No XML document to parse"
25 msgstr "Žádný XML dokument k parsování"
25 msgstr "Žádný XML dokument ke zpracování"
2626
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
27 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2828 msgid "Unable to parse configuration"
29 msgstr "Nelze parsovat konfiguraci"
29 msgstr "Nedaří se zpracovat nastavení"
3030
31 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
31 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3232 #, c-format
3333 msgid "XML data has no '%s' node"
34 msgstr "XML data nemají uzel '%s'"
34 msgstr "XML data nemají uzel „%s“"
3535
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
36 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3737 msgid "No XML document associated with this config object"
38 msgstr "Žádný XML dokument není asociován s tímto konfiguračním objektem"
38 msgstr "S tímto objektem nastavení není spojen žádný XML dokument"
3939
40 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
40 #: libvirt-gconfig/libvirt-gconfig-object.c:214
4141 msgid "No XML schema associated with this config object"
42 msgstr "Žádné XML schéma není spojeno s tímto konfiguračním objektem"
42 msgstr "S tímto objektem nastavení není spojen žádné XML schema"
4343
44 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
44 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4545 #, c-format
4646 msgid "Unable to create RNG parser for %s"
47 msgstr "Nelze vytvořit RNG parser pro %s"
47 msgstr "Nedaří se vytvořit RNG parser pro %s"
4848
49 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
49 #: libvirt-gconfig/libvirt-gconfig-object.c:233
5050 #, c-format
5151 msgid "Unable to parse RNG %s"
52 msgstr "Nelze parsovat RNG %s"
52 msgstr "Nedaří se zpracovat RNG %s"
5353
54 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
54 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5555 #, c-format
5656 msgid "Unable to create RNG validation context %s"
57 msgstr "Nelze vytvořit ověření kontextu RNG %s"
57 msgstr "Nedaří se vytvořit ověření kontextu RNG %s"
5858
59 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
59 #: libvirt-gconfig/libvirt-gconfig-object.c:255
6060 msgid "Unable to validate doc"
61 msgstr "Nelze ověřit dokument"
61 msgstr "Dokument se nedaří ověřit"
6262
63 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
63 #: libvirt-gobject/libvirt-gobject-connection.c:438
6464 #, c-format
6565 msgid "Connection %s is already open"
66 msgstr "Spojení %s je již navázáno"
66 msgstr "Spojení %s už je navázáno"
6767
68 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
68 #: libvirt-gobject/libvirt-gobject-connection.c:453
6969 #, c-format
7070 msgid "Unable to open %s"
71 msgstr "Nelze otevřít %s"
71 msgstr "Nedaří se otevřít %s"
7272
73 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
73 #: libvirt-gobject/libvirt-gobject-connection.c:464
7474 msgid "Unable to get connection URI"
75 msgstr "Nelze získat URI připojení"
75 msgstr "Nedaří se získat URI připojení"
7676
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
77 #: libvirt-gobject/libvirt-gobject-connection.c:729
78 #: libvirt-gobject/libvirt-gobject-connection.c:817
79 #: libvirt-gobject/libvirt-gobject-connection.c:1504
80 #: libvirt-gobject/libvirt-gobject-connection.c:1761
8181 msgid "Connection is not open"
8282 msgstr "Spojení není navázáno"
8383
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
84 #: libvirt-gobject/libvirt-gobject-connection.c:742
8585 msgid "Failed to fetch list of domains"
86 msgstr "Nepodařilo se načíst seznam doméno "
86 msgstr "Nepodařilo se načíst seznam domén"
8787
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
88 #: libvirt-gobject/libvirt-gobject-connection.c:833
8989 msgid "Failed to fetch list of pools"
9090 msgstr "Nepodařilo se načíst seznam úložišť"
9191
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
92 #: libvirt-gobject/libvirt-gobject-connection.c:1034
93 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9494 msgid "Connection is not opened"
9595 msgstr "Spojení není navázáno"
9696
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
97 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9898 msgid "Unable to get hypervisor name"
9999 msgstr "Nezdařilo se získat název hypervisoru"
100100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
101 #: libvirt-gobject/libvirt-gobject-connection.c:1079
102102 msgid "Unable to get hypervisor version"
103 msgstr "Nepodařilo se získat verzi hypervizora"
103 msgstr "Nepodařilo se získat verzi hypervizoru"
104104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
105 #: libvirt-gobject/libvirt-gobject-connection.c:1394
106 #: libvirt-gobject/libvirt-gobject-connection.c:1449
107107 msgid "Failed to create domain"
108108 msgstr "Nepodařilo se vytvořit doménu"
109109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
110 #: libvirt-gobject/libvirt-gobject-connection.c:1520
111111 msgid "Failed to fetch list of interfaces"
112112 msgstr "Nepodařilo se načíst seznam rozhraní"
113113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
114 #: libvirt-gobject/libvirt-gobject-connection.c:1777
115115 msgid "Failed to fetch list of networks"
116116 msgstr "Nepodařilo se načíst seznam sítí"
117117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
118 #: libvirt-gobject/libvirt-gobject-connection.c:2020
119119 msgid "Failed to create storage pool"
120 msgstr "Nepodařilo se vytvořit úložný prostor"
120 msgstr "Nepodařilo se vytvořit fond úložišť"
121121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
122 #: libvirt-gobject/libvirt-gobject-connection.c:2063
123123 msgid "Unable to get node info"
124124 msgstr "Nepodařilo se získat informace o uzlu"
125125
126 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
126 #: libvirt-gobject/libvirt-gobject-connection.c:2119
127 msgid "Unable to get domain capabilities"
128 msgstr ""
129
130 #: libvirt-gobject/libvirt-gobject-connection.c:2271
127131 msgid "Unable to get capabilities"
128 msgstr "Nepodařilo se získat schopnosti"
132 msgstr "Nepodařilo se získat možnosti"
129133
130 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
134 #: libvirt-gobject/libvirt-gobject-connection.c:2395
131135 msgid "Unable to restore domain"
132136 msgstr "Nepodařilo se obnovit doménu"
133137
134 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
138 #: libvirt-gobject/libvirt-gobject-stream.c:347
135139 msgid "virStreamRecv call would block"
136140 msgstr "Volání virStreamRecv by blokovalo"
137141
138 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
139 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
142 #: libvirt-gobject/libvirt-gobject-stream.c:350
143 #: libvirt-gobject/libvirt-gobject-stream.c:466
140144 #, c-format
141145 msgid "Got virStreamRecv error in %s"
142 msgstr "Má chybu virStreamRecv v %s"
146 msgstr "Obdržena chyba virStreamRecv v %s"
143147
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
148 #: libvirt-gobject/libvirt-gobject-stream.c:415
145149 msgid "Unable to perform RecvAll"
146150 msgstr "Nepodařilo se provést RecvAll"
147151
148 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
152 #: libvirt-gobject/libvirt-gobject-stream.c:463
149153 msgid "virStreamSend call would block"
150154 msgstr "Volání virStreamSend by blokovalo"
151155
152 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
156 #: libvirt-gobject/libvirt-gobject-stream.c:531
153157 msgid "Unable to perform SendAll"
154158 msgstr "Nepodařilo se provést SendAll"
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:20+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Welsh (http://www.transifex.com/projects/p/libvirt-glib/"
1919 "11) ? 2 : 3;\n"
2020 "X-Generator: Zanata 4.6.2\n"
2121
22 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
22 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2323 msgid "No XML document to parse"
2424 msgstr ""
2525
26 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
26 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2727 msgid "Unable to parse configuration"
2828 msgstr ""
2929
30 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
30 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3131 #, c-format
3232 msgid "XML data has no '%s' node"
3333 msgstr ""
3434
35 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
35 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3636 msgid "No XML document associated with this config object"
3737 msgstr ""
3838
39 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
39 #: libvirt-gconfig/libvirt-gconfig-object.c:214
4040 msgid "No XML schema associated with this config object"
4141 msgstr ""
4242
43 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
43 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4444 #, c-format
4545 msgid "Unable to create RNG parser for %s"
4646 msgstr ""
4747
48 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
48 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4949 #, c-format
5050 msgid "Unable to parse RNG %s"
5151 msgstr ""
5252
53 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
53 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5454 #, c-format
5555 msgid "Unable to create RNG validation context %s"
5656 msgstr ""
5757
58 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
58 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5959 msgid "Unable to validate doc"
6060 msgstr ""
6161
62 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
62 #: libvirt-gobject/libvirt-gobject-connection.c:438
6363 #, c-format
6464 msgid "Connection %s is already open"
6565 msgstr ""
6666
67 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
67 #: libvirt-gobject/libvirt-gobject-connection.c:453
6868 #, c-format
6969 msgid "Unable to open %s"
7070 msgstr ""
7171
72 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
72 #: libvirt-gobject/libvirt-gobject-connection.c:464
7373 msgid "Unable to get connection URI"
7474 msgstr ""
7575
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
76 #: libvirt-gobject/libvirt-gobject-connection.c:729
77 #: libvirt-gobject/libvirt-gobject-connection.c:817
78 #: libvirt-gobject/libvirt-gobject-connection.c:1504
79 #: libvirt-gobject/libvirt-gobject-connection.c:1761
8080 msgid "Connection is not open"
8181 msgstr ""
8282
83 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
83 #: libvirt-gobject/libvirt-gobject-connection.c:742
8484 msgid "Failed to fetch list of domains"
8585 msgstr ""
8686
87 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
87 #: libvirt-gobject/libvirt-gobject-connection.c:833
8888 msgid "Failed to fetch list of pools"
8989 msgstr ""
9090
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
91 #: libvirt-gobject/libvirt-gobject-connection.c:1034
92 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9393 msgid "Connection is not opened"
9494 msgstr ""
9595
96 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
96 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9797 msgid "Unable to get hypervisor name"
9898 msgstr ""
9999
100 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
100 #: libvirt-gobject/libvirt-gobject-connection.c:1079
101101 msgid "Unable to get hypervisor version"
102102 msgstr ""
103103
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
104 #: libvirt-gobject/libvirt-gobject-connection.c:1394
105 #: libvirt-gobject/libvirt-gobject-connection.c:1449
106106 msgid "Failed to create domain"
107107 msgstr ""
108108
109 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
109 #: libvirt-gobject/libvirt-gobject-connection.c:1520
110110 msgid "Failed to fetch list of interfaces"
111111 msgstr ""
112112
113 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
113 #: libvirt-gobject/libvirt-gobject-connection.c:1777
114114 msgid "Failed to fetch list of networks"
115115 msgstr ""
116116
117 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
117 #: libvirt-gobject/libvirt-gobject-connection.c:2020
118118 msgid "Failed to create storage pool"
119119 msgstr ""
120120
121 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
121 #: libvirt-gobject/libvirt-gobject-connection.c:2063
122122 msgid "Unable to get node info"
123123 msgstr ""
124124
125 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
125 #: libvirt-gobject/libvirt-gobject-connection.c:2119
126 msgid "Unable to get domain capabilities"
127 msgstr ""
128
129 #: libvirt-gobject/libvirt-gobject-connection.c:2271
126130 msgid "Unable to get capabilities"
127131 msgstr ""
128132
129 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
133 #: libvirt-gobject/libvirt-gobject-connection.c:2395
130134 msgid "Unable to restore domain"
131135 msgstr ""
132136
133 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
137 #: libvirt-gobject/libvirt-gobject-stream.c:347
134138 msgid "virStreamRecv call would block"
135139 msgstr ""
136140
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
138 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
141 #: libvirt-gobject/libvirt-gobject-stream.c:350
142 #: libvirt-gobject/libvirt-gobject-stream.c:466
139143 #, c-format
140144 msgid "Got virStreamRecv error in %s"
141145 msgstr ""
142146
143 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
147 #: libvirt-gobject/libvirt-gobject-stream.c:415
144148 msgid "Unable to perform RecvAll"
145149 msgstr ""
146150
147 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
151 #: libvirt-gobject/libvirt-gobject-stream.c:463
148152 msgid "virStreamSend call would block"
149153 msgstr ""
150154
151 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
155 #: libvirt-gobject/libvirt-gobject-stream.c:531
152156 msgid "Unable to perform SendAll"
153157 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:20+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Danish (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:20+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: German (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:20+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:20+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Greek (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 # Robert Readman <robert_readman@hotmail.com>, 2013
66 msgid ""
77 msgstr ""
8 "Project-Id-Version: PACKAGE VERSION\n"
9 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
8 "Project-Id-Version: libvirt-glib 2.0.0\n"
9 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
10 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1111 "PO-Revision-Date: 2014-12-17 12:20+0000\n"
1212 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1313 "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/"
1919 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
2020 "X-Generator: Zanata 4.6.2\n"
2121
22 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
22 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2323 msgid "No XML document to parse"
2424 msgstr "No XML document to parse"
2525
26 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
26 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2727 msgid "Unable to parse configuration"
2828 msgstr "Unable to parse configuration"
2929
30 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
30 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3131 #, c-format
3232 msgid "XML data has no '%s' node"
3333 msgstr "XML data has no '%s' node"
3434
35 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
35 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3636 msgid "No XML document associated with this config object"
3737 msgstr "No XML document associated with this config object"
3838
39 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
39 #: libvirt-gconfig/libvirt-gconfig-object.c:214
4040 msgid "No XML schema associated with this config object"
4141 msgstr ""
4242
43 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
43 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4444 #, c-format
4545 msgid "Unable to create RNG parser for %s"
4646 msgstr "Unable to create RNG parser for %s"
4747
48 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
48 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4949 #, c-format
5050 msgid "Unable to parse RNG %s"
5151 msgstr "Unable to parse RNG %s"
5252
53 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
53 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5454 #, c-format
5555 msgid "Unable to create RNG validation context %s"
5656 msgstr "Unable to create RNG validation context %s"
5757
58 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
58 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5959 msgid "Unable to validate doc"
6060 msgstr "Unable to validate doc"
6161
62 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
62 #: libvirt-gobject/libvirt-gobject-connection.c:438
6363 #, c-format
6464 msgid "Connection %s is already open"
6565 msgstr "Connection %s is already open"
6666
67 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
67 #: libvirt-gobject/libvirt-gobject-connection.c:453
6868 #, c-format
6969 msgid "Unable to open %s"
7070 msgstr "Unable to open %s"
7171
72 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
72 #: libvirt-gobject/libvirt-gobject-connection.c:464
7373 msgid "Unable to get connection URI"
7474 msgstr "Unable to get connection URI"
7575
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
76 #: libvirt-gobject/libvirt-gobject-connection.c:729
77 #: libvirt-gobject/libvirt-gobject-connection.c:817
78 #: libvirt-gobject/libvirt-gobject-connection.c:1504
79 #: libvirt-gobject/libvirt-gobject-connection.c:1761
8080 msgid "Connection is not open"
8181 msgstr "Connection is not open"
8282
83 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
83 #: libvirt-gobject/libvirt-gobject-connection.c:742
8484 msgid "Failed to fetch list of domains"
8585 msgstr ""
8686
87 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
87 #: libvirt-gobject/libvirt-gobject-connection.c:833
8888 msgid "Failed to fetch list of pools"
8989 msgstr ""
9090
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
91 #: libvirt-gobject/libvirt-gobject-connection.c:1034
92 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9393 msgid "Connection is not opened"
9494 msgstr "Connection is not opened"
9595
96 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
96 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9797 msgid "Unable to get hypervisor name"
9898 msgstr "Unable to get hypervisor name"
9999
100 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
100 #: libvirt-gobject/libvirt-gobject-connection.c:1079
101101 msgid "Unable to get hypervisor version"
102102 msgstr "Unable to get hypervisor version"
103103
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
104 #: libvirt-gobject/libvirt-gobject-connection.c:1394
105 #: libvirt-gobject/libvirt-gobject-connection.c:1449
106106 msgid "Failed to create domain"
107107 msgstr "Failed to create domain"
108108
109 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
109 #: libvirt-gobject/libvirt-gobject-connection.c:1520
110110 msgid "Failed to fetch list of interfaces"
111111 msgstr ""
112112
113 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
113 #: libvirt-gobject/libvirt-gobject-connection.c:1777
114114 msgid "Failed to fetch list of networks"
115115 msgstr ""
116116
117 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
117 #: libvirt-gobject/libvirt-gobject-connection.c:2020
118118 msgid "Failed to create storage pool"
119119 msgstr "Failed to create storage pool"
120120
121 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
121 #: libvirt-gobject/libvirt-gobject-connection.c:2063
122122 msgid "Unable to get node info"
123123 msgstr "Unable to get node info"
124124
125 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
125 #: libvirt-gobject/libvirt-gobject-connection.c:2119
126 msgid "Unable to get domain capabilities"
127 msgstr ""
128
129 #: libvirt-gobject/libvirt-gobject-connection.c:2271
126130 msgid "Unable to get capabilities"
127131 msgstr "Unable to get capabilities"
128132
129 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
133 #: libvirt-gobject/libvirt-gobject-connection.c:2395
130134 msgid "Unable to restore domain"
131135 msgstr "Unable to restore domain"
132136
133 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
137 #: libvirt-gobject/libvirt-gobject-stream.c:347
134138 msgid "virStreamRecv call would block"
135139 msgstr "virStreamRecv call would block"
136140
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
138 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
141 #: libvirt-gobject/libvirt-gobject-stream.c:350
142 #: libvirt-gobject/libvirt-gobject-stream.c:466
139143 #, c-format
140144 msgid "Got virStreamRecv error in %s"
141145 msgstr "Got virStreamRecv error in %s"
142146
143 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
147 #: libvirt-gobject/libvirt-gobject-stream.c:415
144148 msgid "Unable to perform RecvAll"
145149 msgstr "Unable to perform RecvAll"
146150
147 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
151 #: libvirt-gobject/libvirt-gobject-stream.c:463
148152 msgid "virStreamSend call would block"
149153 msgstr "virStreamSend call would block"
150154
151 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
155 #: libvirt-gobject/libvirt-gobject-stream.c:531
152156 msgid "Unable to perform SendAll"
153157 msgstr "Unable to perform SendAll"
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:20+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Esperanto (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
66 # Máximo Castañeda Riloba <mcrcctm@gmail.com>, 2016. #zanata
77 msgid ""
88 msgstr ""
9 "Project-Id-Version: PACKAGE VERSION\n"
10 "Report-Msgid-Bugs-To: \n"
11 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
9 "Project-Id-Version: libvirt-glib 2.0.0\n"
10 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
11 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1212 "PO-Revision-Date: 2016-08-07 06:44+0000\n"
1313 "Last-Translator: Máximo Castañeda Riloba <mcrcctm@gmail.com>\n"
1414 "Language-Team: Spanish (http://www.transifex.com/projects/p/libvirt-glib/"
2020 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
2121 "X-Generator: Zanata 4.6.2\n"
2222
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
23 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2424 msgid "No XML document to parse"
2525 msgstr "No hay ningún documento XML que analizar"
2626
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
27 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2828 msgid "Unable to parse configuration"
2929 msgstr "No se pudo analizar la configuración"
3030
31 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
31 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3232 #, c-format
3333 msgid "XML data has no '%s' node"
3434 msgstr "Los datos XML no tienen un nodo «%s»"
3535
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
36 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3737 msgid "No XML document associated with this config object"
3838 msgstr ""
3939 "No hay ningún documento XML asociado con este objeto de la configuración"
4040
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
41 #: libvirt-gconfig/libvirt-gconfig-object.c:214
4242 msgid "No XML schema associated with this config object"
4343 msgstr ""
4444
45 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
45 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4646 #, c-format
4747 msgid "Unable to create RNG parser for %s"
4848 msgstr "No se pudo crear el analizador RNG para %s"
4949
50 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
50 #: libvirt-gconfig/libvirt-gconfig-object.c:233
5151 #, c-format
5252 msgid "Unable to parse RNG %s"
5353 msgstr "No se pudo analizar el RNG %s"
5454
55 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
55 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5656 #, c-format
5757 msgid "Unable to create RNG validation context %s"
5858 msgstr "No se pudo crear el contexto de validación de RNG %s"
5959
60 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
60 #: libvirt-gconfig/libvirt-gconfig-object.c:255
6161 msgid "Unable to validate doc"
6262 msgstr "No se pudo validar el documento"
6363
64 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
64 #: libvirt-gobject/libvirt-gobject-connection.c:438
6565 #, c-format
6666 msgid "Connection %s is already open"
6767 msgstr "La conexión %s ya está abierta"
6868
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
69 #: libvirt-gobject/libvirt-gobject-connection.c:453
7070 #, c-format
7171 msgid "Unable to open %s"
7272 msgstr "No se puede abrir %s"
7373
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
74 #: libvirt-gobject/libvirt-gobject-connection.c:464
7575 msgid "Unable to get connection URI"
7676 msgstr "No se puede obtener el URI de la conexión"
7777
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
81 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
78 #: libvirt-gobject/libvirt-gobject-connection.c:729
79 #: libvirt-gobject/libvirt-gobject-connection.c:817
80 #: libvirt-gobject/libvirt-gobject-connection.c:1504
81 #: libvirt-gobject/libvirt-gobject-connection.c:1761
8282 msgid "Connection is not open"
8383 msgstr "La conexión no está abierta"
8484
85 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
85 #: libvirt-gobject/libvirt-gobject-connection.c:742
8686 msgid "Failed to fetch list of domains"
8787 msgstr "No se pudo obtener la lista de dominios"
8888
89 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
89 #: libvirt-gobject/libvirt-gobject-connection.c:833
9090 msgid "Failed to fetch list of pools"
9191 msgstr "No se pudo obtener la lista de grupos"
9292
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
94 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
93 #: libvirt-gobject/libvirt-gobject-connection.c:1034
94 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9595 msgid "Connection is not opened"
9696 msgstr "La conexión no está abierta"
9797
98 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
98 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9999 msgid "Unable to get hypervisor name"
100100 msgstr "No se puede obtener el nombre del hipervisor"
101101
102 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
102 #: libvirt-gobject/libvirt-gobject-connection.c:1079
103103 msgid "Unable to get hypervisor version"
104104 msgstr "No se puede obtener la versión del hipervisor"
105105
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
107 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
106 #: libvirt-gobject/libvirt-gobject-connection.c:1394
107 #: libvirt-gobject/libvirt-gobject-connection.c:1449
108108 msgid "Failed to create domain"
109109 msgstr "Falló al crear el dominio"
110110
111 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
111 #: libvirt-gobject/libvirt-gobject-connection.c:1520
112112 msgid "Failed to fetch list of interfaces"
113113 msgstr "No se pudo obtener la lista de interfaces"
114114
115 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
115 #: libvirt-gobject/libvirt-gobject-connection.c:1777
116116 msgid "Failed to fetch list of networks"
117117 msgstr "No se pudo obtener la lista de redes"
118118
119 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
119 #: libvirt-gobject/libvirt-gobject-connection.c:2020
120120 msgid "Failed to create storage pool"
121121 msgstr "Falló al crear el grupo de almacenamiento"
122122
123 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
123 #: libvirt-gobject/libvirt-gobject-connection.c:2063
124124 msgid "Unable to get node info"
125125 msgstr "No se puede obtener la información del nodo"
126126
127 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
127 #: libvirt-gobject/libvirt-gobject-connection.c:2119
128 msgid "Unable to get domain capabilities"
129 msgstr ""
130
131 #: libvirt-gobject/libvirt-gobject-connection.c:2271
128132 msgid "Unable to get capabilities"
129133 msgstr "No se pudieron obtener las capacidades"
130134
131 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
135 #: libvirt-gobject/libvirt-gobject-connection.c:2395
132136 msgid "Unable to restore domain"
133137 msgstr "No se puede restaurar el dominio"
134138
135 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
139 #: libvirt-gobject/libvirt-gobject-stream.c:347
136140 msgid "virStreamRecv call would block"
137141 msgstr "La llamada a virStreamRecv sería bloqueante"
138142
139 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
143 #: libvirt-gobject/libvirt-gobject-stream.c:350
144 #: libvirt-gobject/libvirt-gobject-stream.c:466
141145 #, c-format
142146 msgid "Got virStreamRecv error in %s"
143147 msgstr "Se obtuvo el error virStreamRecv en %s"
144148
145 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
149 #: libvirt-gobject/libvirt-gobject-stream.c:415
146150 msgid "Unable to perform RecvAll"
147151 msgstr "No se puede realizar RecvAll"
148152
149 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
153 #: libvirt-gobject/libvirt-gobject-stream.c:463
150154 msgid "virStreamSend call would block"
151155 msgstr "La llamada a virStreamSend sería bloqueante"
152156
153 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
157 #: libvirt-gobject/libvirt-gobject-stream.c:531
154158 msgid "Unable to perform SendAll"
155159 msgstr "No se puede realizar SendAll"
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:20+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Estonian (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:20+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Basque (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:20+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Persian (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=1; plural=0;\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 # Jiri Grönroos <jiri.gronroos@iki.fi>, 2017. #zanata
66 msgid ""
77 msgstr ""
8 "Project-Id-Version: PACKAGE VERSION\n"
9 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
8 "Project-Id-Version: libvirt-glib 2.0.0\n"
9 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
10 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1111 "PO-Revision-Date: 2017-03-26 10:27+0000\n"
1212 "Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n"
1313 "Language-Team: Finnish (http://www.transifex.com/projects/p/libvirt-glib/"
1919 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
2020 "X-Generator: Zanata 4.6.2\n"
2121
22 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
22 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2323 msgid "No XML document to parse"
2424 msgstr ""
2525
26 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
26 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2727 msgid "Unable to parse configuration"
2828 msgstr ""
2929
30 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
30 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3131 #, c-format
3232 msgid "XML data has no '%s' node"
3333 msgstr ""
3434
35 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
35 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3636 msgid "No XML document associated with this config object"
3737 msgstr ""
3838
39 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
39 #: libvirt-gconfig/libvirt-gconfig-object.c:214
4040 msgid "No XML schema associated with this config object"
4141 msgstr ""
4242
43 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
43 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4444 #, c-format
4545 msgid "Unable to create RNG parser for %s"
4646 msgstr ""
4747
48 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
48 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4949 #, c-format
5050 msgid "Unable to parse RNG %s"
5151 msgstr ""
5252
53 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
53 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5454 #, c-format
5555 msgid "Unable to create RNG validation context %s"
5656 msgstr ""
5757
58 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
58 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5959 msgid "Unable to validate doc"
6060 msgstr ""
6161
62 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
62 #: libvirt-gobject/libvirt-gobject-connection.c:438
6363 #, c-format
6464 msgid "Connection %s is already open"
6565 msgstr "Yhteys %s on jo avoinna"
6666
67 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
67 #: libvirt-gobject/libvirt-gobject-connection.c:453
6868 #, c-format
6969 msgid "Unable to open %s"
7070 msgstr "Ei voida avata %s"
7171
72 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
72 #: libvirt-gobject/libvirt-gobject-connection.c:464
7373 msgid "Unable to get connection URI"
7474 msgstr ""
7575
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
76 #: libvirt-gobject/libvirt-gobject-connection.c:729
77 #: libvirt-gobject/libvirt-gobject-connection.c:817
78 #: libvirt-gobject/libvirt-gobject-connection.c:1504
79 #: libvirt-gobject/libvirt-gobject-connection.c:1761
8080 msgid "Connection is not open"
8181 msgstr "Yhteys ei ole avoinna"
8282
83 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
83 #: libvirt-gobject/libvirt-gobject-connection.c:742
8484 msgid "Failed to fetch list of domains"
8585 msgstr ""
8686
87 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
87 #: libvirt-gobject/libvirt-gobject-connection.c:833
8888 msgid "Failed to fetch list of pools"
8989 msgstr ""
9090
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
91 #: libvirt-gobject/libvirt-gobject-connection.c:1034
92 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9393 msgid "Connection is not opened"
9494 msgstr "Yhteyttä ei ole avattu"
9595
96 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
96 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9797 msgid "Unable to get hypervisor name"
9898 msgstr "Ei saatu hypervisorin nimeä"
9999
100 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
100 #: libvirt-gobject/libvirt-gobject-connection.c:1079
101101 msgid "Unable to get hypervisor version"
102102 msgstr "Ei saatu hypervisorin versiota"
103103
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
104 #: libvirt-gobject/libvirt-gobject-connection.c:1394
105 #: libvirt-gobject/libvirt-gobject-connection.c:1449
106106 msgid "Failed to create domain"
107107 msgstr "Domainin luominen epäonnistui"
108108
109 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
109 #: libvirt-gobject/libvirt-gobject-connection.c:1520
110110 msgid "Failed to fetch list of interfaces"
111111 msgstr ""
112112
113 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
113 #: libvirt-gobject/libvirt-gobject-connection.c:1777
114114 msgid "Failed to fetch list of networks"
115115 msgstr ""
116116
117 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
117 #: libvirt-gobject/libvirt-gobject-connection.c:2020
118118 msgid "Failed to create storage pool"
119119 msgstr ""
120120
121 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
121 #: libvirt-gobject/libvirt-gobject-connection.c:2063
122122 msgid "Unable to get node info"
123123 msgstr ""
124124
125 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
125 #: libvirt-gobject/libvirt-gobject-connection.c:2119
126 msgid "Unable to get domain capabilities"
127 msgstr ""
128
129 #: libvirt-gobject/libvirt-gobject-connection.c:2271
126130 msgid "Unable to get capabilities"
127131 msgstr ""
128132
129 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
133 #: libvirt-gobject/libvirt-gobject-connection.c:2395
130134 msgid "Unable to restore domain"
131135 msgstr ""
132136
133 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
137 #: libvirt-gobject/libvirt-gobject-stream.c:347
134138 msgid "virStreamRecv call would block"
135139 msgstr ""
136140
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
138 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
141 #: libvirt-gobject/libvirt-gobject-stream.c:350
142 #: libvirt-gobject/libvirt-gobject-stream.c:466
139143 #, c-format
140144 msgid "Got virStreamRecv error in %s"
141145 msgstr ""
142146
143 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
147 #: libvirt-gobject/libvirt-gobject-stream.c:415
144148 msgid "Unable to perform RecvAll"
145149 msgstr ""
146150
147 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
151 #: libvirt-gobject/libvirt-gobject-stream.c:463
148152 msgid "virStreamSend call would block"
149153 msgstr ""
150154
151 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
155 #: libvirt-gobject/libvirt-gobject-stream.c:531
152156 msgid "Unable to perform SendAll"
153157 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 # Jérôme Fenal <jfenal@gmail.com>, 2013
66 # Jean-Baptiste Holcroft <jean-baptiste@holcroft.fr>, 2016. #zanata
7 # Jean-Baptiste Holcroft <jean-baptiste@holcroft.fr>, 2019. #zanata
78 msgid ""
89 msgstr ""
9 "Project-Id-Version: PACKAGE VERSION\n"
10 "Report-Msgid-Bugs-To: \n"
11 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
12 "PO-Revision-Date: 2016-07-15 05:10+0000\n"
10 "Project-Id-Version: libvirt-glib 2.0.0\n"
11 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
12 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
13 "PO-Revision-Date: 2019-01-21 08:05+0000\n"
1314 "Last-Translator: Jean-Baptiste Holcroft <jean-baptiste@holcroft.fr>\n"
1415 "Language-Team: French (http://www.transifex.com/projects/p/libvirt-glib/"
1516 "language/fr/)\n"
2021 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
2122 "X-Generator: Zanata 4.6.2\n"
2223
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
24 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2425 msgid "No XML document to parse"
2526 msgstr "Aucun document XML à analyser"
2627
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
28 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2829 msgid "Unable to parse configuration"
2930 msgstr "Impossible d'analyser la configuration"
3031
31 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
32 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3233 #, c-format
3334 msgid "XML data has no '%s' node"
3435 msgstr "Les données XML n'ont pas de nœud « %s »"
3536
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
37 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3738 msgid "No XML document associated with this config object"
3839 msgstr "Aucun document XML associé avec cet objet de configuration"
3940
40 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
41 #: libvirt-gconfig/libvirt-gconfig-object.c:214
4142 msgid "No XML schema associated with this config object"
42 msgstr ""
43 msgstr "Aucun schéma XML associé avec cet objet de configuration"
4344
44 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
45 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4546 #, c-format
4647 msgid "Unable to create RNG parser for %s"
4748 msgstr "Impossible de créer l'analyseur RNG pour %s"
4849
49 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
50 #: libvirt-gconfig/libvirt-gconfig-object.c:233
5051 #, c-format
5152 msgid "Unable to parse RNG %s"
5253 msgstr "Impossible d'analyser le RNG %s"
5354
54 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
55 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5556 #, c-format
5657 msgid "Unable to create RNG validation context %s"
5758 msgstr "Impossible de créer un contexte de validation RNG %s"
5859
59 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
60 #: libvirt-gconfig/libvirt-gconfig-object.c:255
6061 msgid "Unable to validate doc"
6162 msgstr "Impossible de valider le document"
6263
63 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
64 #: libvirt-gobject/libvirt-gobject-connection.c:438
6465 #, c-format
6566 msgid "Connection %s is already open"
6667 msgstr "La connexion %s est déjà ouverte"
6768
68 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
69 #: libvirt-gobject/libvirt-gobject-connection.c:453
6970 #, c-format
7071 msgid "Unable to open %s"
7172 msgstr "Impossible d'ouvrir %s"
7273
73 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
74 #: libvirt-gobject/libvirt-gobject-connection.c:464
7475 msgid "Unable to get connection URI"
7576 msgstr "Impossible d'obtenir l'URI de connexion"
7677
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
78 #: libvirt-gobject/libvirt-gobject-connection.c:729
79 #: libvirt-gobject/libvirt-gobject-connection.c:817
80 #: libvirt-gobject/libvirt-gobject-connection.c:1504
81 #: libvirt-gobject/libvirt-gobject-connection.c:1761
8182 msgid "Connection is not open"
8283 msgstr "La connexion n'est pas ouverte"
8384
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
85 #: libvirt-gobject/libvirt-gobject-connection.c:742
8586 msgid "Failed to fetch list of domains"
8687 msgstr "Impossible de récupérer la liste des domaines"
8788
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
89 #: libvirt-gobject/libvirt-gobject-connection.c:833
8990 msgid "Failed to fetch list of pools"
9091 msgstr "Impossible de récupérer la liste des pools"
9192
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
93 #: libvirt-gobject/libvirt-gobject-connection.c:1034
94 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9495 msgid "Connection is not opened"
9596 msgstr "La connexion n'est pas ouverte"
9697
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
98 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9899 msgid "Unable to get hypervisor name"
99100 msgstr "Impossible d'obtenir le nom de l'hyperviseur"
100101
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
102 #: libvirt-gobject/libvirt-gobject-connection.c:1079
102103 msgid "Unable to get hypervisor version"
103104 msgstr "Impossible d'obtenir la version de l'hyperviseur"
104105
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
106 #: libvirt-gobject/libvirt-gobject-connection.c:1394
107 #: libvirt-gobject/libvirt-gobject-connection.c:1449
107108 msgid "Failed to create domain"
108109 msgstr "Échec de la création du domaine"
109110
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
111 #: libvirt-gobject/libvirt-gobject-connection.c:1520
111112 msgid "Failed to fetch list of interfaces"
112113 msgstr "Impossible de récupérer la liste des interfaces"
113114
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
115 #: libvirt-gobject/libvirt-gobject-connection.c:1777
115116 msgid "Failed to fetch list of networks"
116117 msgstr "Impossible de récupérer la liste des réseaux"
117118
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
119 #: libvirt-gobject/libvirt-gobject-connection.c:2020
119120 msgid "Failed to create storage pool"
120121 msgstr "Échec de la création du pool de stockage"
121122
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
123 #: libvirt-gobject/libvirt-gobject-connection.c:2063
123124 msgid "Unable to get node info"
124125 msgstr "Impossible d'obtenir les informations sur le nœud"
125126
126 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
127 #: libvirt-gobject/libvirt-gobject-connection.c:2119
128 msgid "Unable to get domain capabilities"
129 msgstr ""
130
131 #: libvirt-gobject/libvirt-gobject-connection.c:2271
127132 msgid "Unable to get capabilities"
128133 msgstr "Impossible d'obtenir les capacités"
129134
130 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
135 #: libvirt-gobject/libvirt-gobject-connection.c:2395
131136 msgid "Unable to restore domain"
132137 msgstr "Impossible de restaurer le domaine"
133138
134 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
139 #: libvirt-gobject/libvirt-gobject-stream.c:347
135140 msgid "virStreamRecv call would block"
136141 msgstr "L'appel à virStreamRecv serait bloquant"
137142
138 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
139 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
143 #: libvirt-gobject/libvirt-gobject-stream.c:350
144 #: libvirt-gobject/libvirt-gobject-stream.c:466
140145 #, c-format
141146 msgid "Got virStreamRecv error in %s"
142147 msgstr "Erreur virStreamRecv survenue dans %s"
143148
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
149 #: libvirt-gobject/libvirt-gobject-stream.c:415
145150 msgid "Unable to perform RecvAll"
146151 msgstr "Impossible d'exécuter RecvAll"
147152
148 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
153 #: libvirt-gobject/libvirt-gobject-stream.c:463
149154 msgid "virStreamSend call would block"
150155 msgstr "L'appel à virStreamSend serait bloquant"
151156
152 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
157 #: libvirt-gobject/libvirt-gobject-stream.c:531
153158 msgid "Unable to perform SendAll"
154159 msgstr "Impossible d'exécuter SendAll"
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:20+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Galician (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:20+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Gujarati (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:20+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Hebrew (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
66 # Rajesh Ranjan <rranjan@redhat.com>, 2014
77 msgid ""
88 msgstr ""
9 "Project-Id-Version: PACKAGE VERSION\n"
10 "Report-Msgid-Bugs-To: \n"
11 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
9 "Project-Id-Version: libvirt-glib 2.0.0\n"
10 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
11 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1212 "PO-Revision-Date: 2014-12-17 12:20+0000\n"
1313 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1414 "Language-Team: Hindi (http://www.transifex.com/projects/p/libvirt-glib/"
2020 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
2121 "X-Generator: Zanata 4.6.2\n"
2222
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
23 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2424 msgid "No XML document to parse"
2525 msgstr "विश्लेषण करने के लिए कोई XML दस्तावेज़ उपल्बध नहीं "
2626
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
27 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2828 msgid "Unable to parse configuration"
2929 msgstr "विन्यास के विश्लेषण कर पाने में असमर्थ"
3030
31 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
31 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3232 #, c-format
3333 msgid "XML data has no '%s' node"
3434 msgstr "XML data का कोई '%s' नोड नहीं है"
3535
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
36 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3737 msgid "No XML document associated with this config object"
3838 msgstr "इस XML दस्तावेज़ के साथ कोई कॉन्फ़िंग ऑब्जेक्ट नहीं है"
3939
40 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
40 #: libvirt-gconfig/libvirt-gconfig-object.c:214
4141 msgid "No XML schema associated with this config object"
4242 msgstr ""
4343
44 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
44 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4545 #, c-format
4646 msgid "Unable to create RNG parser for %s"
4747 msgstr "%s के लिए RNG विश्लेषक का निर्माण करने में असमर्थ"
4848
49 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
49 #: libvirt-gconfig/libvirt-gconfig-object.c:233
5050 #, c-format
5151 msgid "Unable to parse RNG %s"
5252 msgstr "RNG %s को विश्लेषण करने में असमर्थ"
5353
54 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
54 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5555 #, c-format
5656 msgid "Unable to create RNG validation context %s"
5757 msgstr "RNG अभिप्रमाणित सन्दर्भ %s का निर्माण करने में असमर्थ"
5858
59 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
59 #: libvirt-gconfig/libvirt-gconfig-object.c:255
6060 msgid "Unable to validate doc"
6161 msgstr "डॉक को अभिप्रमाणित करने में असमर्थ"
6262
63 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
63 #: libvirt-gobject/libvirt-gobject-connection.c:438
6464 #, c-format
6565 msgid "Connection %s is already open"
6666 msgstr "कनेक्शन %s पहले से ही खुला है"
6767
68 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
68 #: libvirt-gobject/libvirt-gobject-connection.c:453
6969 #, c-format
7070 msgid "Unable to open %s"
7171 msgstr "%s को खोल पाने में असमर्थ "
7272
73 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
73 #: libvirt-gobject/libvirt-gobject-connection.c:464
7474 msgid "Unable to get connection URI"
7575 msgstr "URI कनेक्शन प्राप्त करने में असमर्थ "
7676
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
77 #: libvirt-gobject/libvirt-gobject-connection.c:729
78 #: libvirt-gobject/libvirt-gobject-connection.c:817
79 #: libvirt-gobject/libvirt-gobject-connection.c:1504
80 #: libvirt-gobject/libvirt-gobject-connection.c:1761
8181 msgid "Connection is not open"
8282 msgstr "कनेक्शन खुला नहीं है"
8383
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
84 #: libvirt-gobject/libvirt-gobject-connection.c:742
8585 msgid "Failed to fetch list of domains"
8686 msgstr ""
8787
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
88 #: libvirt-gobject/libvirt-gobject-connection.c:833
8989 msgid "Failed to fetch list of pools"
9090 msgstr ""
9191
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
92 #: libvirt-gobject/libvirt-gobject-connection.c:1034
93 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9494 msgid "Connection is not opened"
9595 msgstr "कनेक्शन को खोला नहीं गया है"
9696
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
97 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9898 msgid "Unable to get hypervisor name"
9999 msgstr "हाइपरविज़र का नाम प्राप्त करने में असमर्थ"
100100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
101 #: libvirt-gobject/libvirt-gobject-connection.c:1079
102102 msgid "Unable to get hypervisor version"
103103 msgstr "हाइपरविज़र का सन्सकरण प्राप्त करने मे असमर्थ"
104104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
105 #: libvirt-gobject/libvirt-gobject-connection.c:1394
106 #: libvirt-gobject/libvirt-gobject-connection.c:1449
107107 msgid "Failed to create domain"
108108 msgstr "डोमेन का निर्माण कर पाने में असफल"
109109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
110 #: libvirt-gobject/libvirt-gobject-connection.c:1520
111111 msgid "Failed to fetch list of interfaces"
112112 msgstr ""
113113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
114 #: libvirt-gobject/libvirt-gobject-connection.c:1777
115115 msgid "Failed to fetch list of networks"
116116 msgstr ""
117117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
118 #: libvirt-gobject/libvirt-gobject-connection.c:2020
119119 msgid "Failed to create storage pool"
120120 msgstr "संग्रहण पूल का निर्माण करने में असफल"
121121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
122 #: libvirt-gobject/libvirt-gobject-connection.c:2063
123123 msgid "Unable to get node info"
124124 msgstr "नोड की जानकारी प्राप्त करने में असमर्थ"
125125
126 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
126 #: libvirt-gobject/libvirt-gobject-connection.c:2119
127 msgid "Unable to get domain capabilities"
128 msgstr ""
129
130 #: libvirt-gobject/libvirt-gobject-connection.c:2271
127131 msgid "Unable to get capabilities"
128132 msgstr "सक्षमता प्राप्त करने में असमर्थ"
129133
130 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
134 #: libvirt-gobject/libvirt-gobject-connection.c:2395
131135 msgid "Unable to restore domain"
132136 msgstr "डोमेन पुन: स्थापित करने में असमर्थ"
133137
134 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
138 #: libvirt-gobject/libvirt-gobject-stream.c:347
135139 msgid "virStreamRecv call would block"
136140 msgstr "virStreamRecv का कॉल रोक देता"
137141
138 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
139 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
142 #: libvirt-gobject/libvirt-gobject-stream.c:350
143 #: libvirt-gobject/libvirt-gobject-stream.c:466
140144 #, c-format
141145 msgid "Got virStreamRecv error in %s"
142146 msgstr "%s में virStreamRecv त्रुटि पाया"
143147
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
148 #: libvirt-gobject/libvirt-gobject-stream.c:415
145149 msgid "Unable to perform RecvAll"
146150 msgstr "RecvAll के कार्यान्वयन में असमर्थ"
147151
148 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
152 #: libvirt-gobject/libvirt-gobject-stream.c:463
149153 msgid "virStreamSend call would block"
150154 msgstr "virStreamSend का कॉल रोक देता"
151155
152 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
156 #: libvirt-gobject/libvirt-gobject-stream.c:531
153157 msgid "Unable to perform SendAll"
154158 msgstr "SendAll के कार्यान्वयन में असमर्थ"
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:20+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Croatian (http://www.transifex.com/projects/p/libvirt-glib/"
1919 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
2020 "X-Generator: Zanata 4.6.2\n"
2121
22 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
22 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2323 msgid "No XML document to parse"
2424 msgstr ""
2525
26 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
26 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2727 msgid "Unable to parse configuration"
2828 msgstr ""
2929
30 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
30 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3131 #, c-format
3232 msgid "XML data has no '%s' node"
3333 msgstr ""
3434
35 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
35 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3636 msgid "No XML document associated with this config object"
3737 msgstr ""
3838
39 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
39 #: libvirt-gconfig/libvirt-gconfig-object.c:214
4040 msgid "No XML schema associated with this config object"
4141 msgstr ""
4242
43 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
43 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4444 #, c-format
4545 msgid "Unable to create RNG parser for %s"
4646 msgstr ""
4747
48 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
48 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4949 #, c-format
5050 msgid "Unable to parse RNG %s"
5151 msgstr ""
5252
53 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
53 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5454 #, c-format
5555 msgid "Unable to create RNG validation context %s"
5656 msgstr ""
5757
58 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
58 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5959 msgid "Unable to validate doc"
6060 msgstr ""
6161
62 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
62 #: libvirt-gobject/libvirt-gobject-connection.c:438
6363 #, c-format
6464 msgid "Connection %s is already open"
6565 msgstr ""
6666
67 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
67 #: libvirt-gobject/libvirt-gobject-connection.c:453
6868 #, c-format
6969 msgid "Unable to open %s"
7070 msgstr ""
7171
72 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
72 #: libvirt-gobject/libvirt-gobject-connection.c:464
7373 msgid "Unable to get connection URI"
7474 msgstr ""
7575
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
76 #: libvirt-gobject/libvirt-gobject-connection.c:729
77 #: libvirt-gobject/libvirt-gobject-connection.c:817
78 #: libvirt-gobject/libvirt-gobject-connection.c:1504
79 #: libvirt-gobject/libvirt-gobject-connection.c:1761
8080 msgid "Connection is not open"
8181 msgstr ""
8282
83 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
83 #: libvirt-gobject/libvirt-gobject-connection.c:742
8484 msgid "Failed to fetch list of domains"
8585 msgstr ""
8686
87 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
87 #: libvirt-gobject/libvirt-gobject-connection.c:833
8888 msgid "Failed to fetch list of pools"
8989 msgstr ""
9090
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
91 #: libvirt-gobject/libvirt-gobject-connection.c:1034
92 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9393 msgid "Connection is not opened"
9494 msgstr ""
9595
96 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
96 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9797 msgid "Unable to get hypervisor name"
9898 msgstr ""
9999
100 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
100 #: libvirt-gobject/libvirt-gobject-connection.c:1079
101101 msgid "Unable to get hypervisor version"
102102 msgstr ""
103103
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
104 #: libvirt-gobject/libvirt-gobject-connection.c:1394
105 #: libvirt-gobject/libvirt-gobject-connection.c:1449
106106 msgid "Failed to create domain"
107107 msgstr ""
108108
109 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
109 #: libvirt-gobject/libvirt-gobject-connection.c:1520
110110 msgid "Failed to fetch list of interfaces"
111111 msgstr ""
112112
113 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
113 #: libvirt-gobject/libvirt-gobject-connection.c:1777
114114 msgid "Failed to fetch list of networks"
115115 msgstr ""
116116
117 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
117 #: libvirt-gobject/libvirt-gobject-connection.c:2020
118118 msgid "Failed to create storage pool"
119119 msgstr ""
120120
121 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
121 #: libvirt-gobject/libvirt-gobject-connection.c:2063
122122 msgid "Unable to get node info"
123123 msgstr ""
124124
125 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
125 #: libvirt-gobject/libvirt-gobject-connection.c:2119
126 msgid "Unable to get domain capabilities"
127 msgstr ""
128
129 #: libvirt-gobject/libvirt-gobject-connection.c:2271
126130 msgid "Unable to get capabilities"
127131 msgstr ""
128132
129 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
133 #: libvirt-gobject/libvirt-gobject-connection.c:2395
130134 msgid "Unable to restore domain"
131135 msgstr ""
132136
133 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
137 #: libvirt-gobject/libvirt-gobject-stream.c:347
134138 msgid "virStreamRecv call would block"
135139 msgstr ""
136140
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
138 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
141 #: libvirt-gobject/libvirt-gobject-stream.c:350
142 #: libvirt-gobject/libvirt-gobject-stream.c:466
139143 #, c-format
140144 msgid "Got virStreamRecv error in %s"
141145 msgstr ""
142146
143 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
147 #: libvirt-gobject/libvirt-gobject-stream.c:415
144148 msgid "Unable to perform RecvAll"
145149 msgstr ""
146150
147 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
151 #: libvirt-gobject/libvirt-gobject-stream.c:463
148152 msgid "virStreamSend call would block"
149153 msgstr ""
150154
151 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
155 #: libvirt-gobject/libvirt-gobject-stream.c:531
152156 msgid "Unable to perform SendAll"
153157 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:21+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Hungarian (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:21+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Interlingua (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:21+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Indonesian (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=1; plural=0;\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:21+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Iloko (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:21+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Icelandic (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:21+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Italian (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
66 # Tomoyuki KATO <tomo@dream.daynight.jp>, 2013
77 msgid ""
88 msgstr ""
9 "Project-Id-Version: PACKAGE VERSION\n"
10 "Report-Msgid-Bugs-To: \n"
11 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
9 "Project-Id-Version: libvirt-glib 2.0.0\n"
10 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
11 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1212 "PO-Revision-Date: 2014-12-17 12:21+0000\n"
1313 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1414 "Language-Team: Japanese (http://www.transifex.com/projects/p/libvirt-glib/"
2020 "Plural-Forms: nplurals=1; plural=0;\n"
2121 "X-Generator: Zanata 4.6.2\n"
2222
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
23 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2424 msgid "No XML document to parse"
2525 msgstr "構文解析する XML ドキュメントがありません"
2626
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
27 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2828 msgid "Unable to parse configuration"
2929 msgstr "設定を構文解析できません"
3030
31 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
31 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3232 #, c-format
3333 msgid "XML data has no '%s' node"
3434 msgstr "XML データに '%s' ノードがありません"
3535
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
36 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3737 msgid "No XML document associated with this config object"
3838 msgstr "この設定オブジェクトと関連付けられた XML ドキュメントがありません"
3939
40 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
40 #: libvirt-gconfig/libvirt-gconfig-object.c:214
4141 msgid "No XML schema associated with this config object"
4242 msgstr ""
4343
44 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
44 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4545 #, c-format
4646 msgid "Unable to create RNG parser for %s"
4747 msgstr "%s の RNG パーサーを作成できません"
4848
49 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
49 #: libvirt-gconfig/libvirt-gconfig-object.c:233
5050 #, c-format
5151 msgid "Unable to parse RNG %s"
5252 msgstr "RNG %s を構文解析できません"
5353
54 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
54 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5555 #, c-format
5656 msgid "Unable to create RNG validation context %s"
5757 msgstr "RNG 検証コンテキスト %s を作成できません"
5858
59 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
59 #: libvirt-gconfig/libvirt-gconfig-object.c:255
6060 msgid "Unable to validate doc"
6161 msgstr "ドキュメントを検証できません"
6262
63 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
63 #: libvirt-gobject/libvirt-gobject-connection.c:438
6464 #, c-format
6565 msgid "Connection %s is already open"
6666 msgstr "すでに接続 %s が開かれています"
6767
68 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
68 #: libvirt-gobject/libvirt-gobject-connection.c:453
6969 #, c-format
7070 msgid "Unable to open %s"
7171 msgstr "%s を開けません"
7272
73 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
73 #: libvirt-gobject/libvirt-gobject-connection.c:464
7474 msgid "Unable to get connection URI"
7575 msgstr "接続 URI を取得できません"
7676
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
77 #: libvirt-gobject/libvirt-gobject-connection.c:729
78 #: libvirt-gobject/libvirt-gobject-connection.c:817
79 #: libvirt-gobject/libvirt-gobject-connection.c:1504
80 #: libvirt-gobject/libvirt-gobject-connection.c:1761
8181 msgid "Connection is not open"
8282 msgstr "接続されていません"
8383
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
84 #: libvirt-gobject/libvirt-gobject-connection.c:742
8585 msgid "Failed to fetch list of domains"
8686 msgstr ""
8787
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
88 #: libvirt-gobject/libvirt-gobject-connection.c:833
8989 msgid "Failed to fetch list of pools"
9090 msgstr ""
9191
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
92 #: libvirt-gobject/libvirt-gobject-connection.c:1034
93 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9494 msgid "Connection is not opened"
9595 msgstr "接続されていません"
9696
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
97 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9898 msgid "Unable to get hypervisor name"
9999 msgstr "ハイパーバイザーの名前を取得できません"
100100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
101 #: libvirt-gobject/libvirt-gobject-connection.c:1079
102102 msgid "Unable to get hypervisor version"
103103 msgstr "ハイパーバイザーのバージョンを取得できません"
104104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
105 #: libvirt-gobject/libvirt-gobject-connection.c:1394
106 #: libvirt-gobject/libvirt-gobject-connection.c:1449
107107 msgid "Failed to create domain"
108108 msgstr "ドメインの作成に失敗しました"
109109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
110 #: libvirt-gobject/libvirt-gobject-connection.c:1520
111111 msgid "Failed to fetch list of interfaces"
112112 msgstr ""
113113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
114 #: libvirt-gobject/libvirt-gobject-connection.c:1777
115115 msgid "Failed to fetch list of networks"
116116 msgstr ""
117117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
118 #: libvirt-gobject/libvirt-gobject-connection.c:2020
119119 msgid "Failed to create storage pool"
120120 msgstr "ストレージプールの作成に失敗しました"
121121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
122 #: libvirt-gobject/libvirt-gobject-connection.c:2063
123123 msgid "Unable to get node info"
124124 msgstr "ノード情報を取得できません"
125125
126 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
126 #: libvirt-gobject/libvirt-gobject-connection.c:2119
127 msgid "Unable to get domain capabilities"
128 msgstr ""
129
130 #: libvirt-gobject/libvirt-gobject-connection.c:2271
127131 msgid "Unable to get capabilities"
128132 msgstr "ケイパビリティを取得できません"
129133
130 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
134 #: libvirt-gobject/libvirt-gobject-connection.c:2395
131135 msgid "Unable to restore domain"
132136 msgstr "ドメインを復元できません"
133137
134 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
138 #: libvirt-gobject/libvirt-gobject-stream.c:347
135139 msgid "virStreamRecv call would block"
136140 msgstr "virStreamRecv の呼び出しがブロックされます"
137141
138 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
139 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
142 #: libvirt-gobject/libvirt-gobject-stream.c:350
143 #: libvirt-gobject/libvirt-gobject-stream.c:466
140144 #, c-format
141145 msgid "Got virStreamRecv error in %s"
142146 msgstr "%s において virStreamRecv エラーが発生しました"
143147
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
148 #: libvirt-gobject/libvirt-gobject-stream.c:415
145149 msgid "Unable to perform RecvAll"
146150 msgstr "RecvAll を実行できません"
147151
148 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
152 #: libvirt-gobject/libvirt-gobject-stream.c:463
149153 msgid "virStreamSend call would block"
150154 msgstr "virStreamSend の呼び出しがブロックされます"
151155
152 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
156 #: libvirt-gobject/libvirt-gobject-stream.c:531
153157 msgid "Unable to perform SendAll"
154158 msgstr "SendAll を実行できません"
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:21+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Georgian (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=1; plural=0;\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:21+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Kazakh (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=1; plural=0;\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:21+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Khmer (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=1; plural=0;\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:21+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Kannada (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=1; plural=0;\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:21+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Korean (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=1; plural=0;\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Libvirt package strings.
1 # Copyright (C) 2019 The Libvirt authors
2 # This file is distributed under the same license as the libvirt-glib package.
3 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
34 #
4 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Cornish\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=4; plural= (n==1) ? 0 : (n==2) ? 1 : (n == 3) ? 2 : "
1818 "3\n"
19 "X-Generator: Zanata 3.6.2\n"
19 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Libvirt package strings.
1 # Copyright (C) 2019 The Libvirt authors
2 # This file is distributed under the same license as the libvirt-glib package.
3 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
34 #
4 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Cornish (Common Orthography)\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=4; plural= (n==1) ? 0 : (n==2) ? 1 : (n == 3) ? 2 : "
1818 "3\n"
19 "X-Generator: Zanata 3.6.2\n"
19 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Libvirt package strings.
1 # Copyright (C) 2019 The Libvirt authors
2 # This file is distributed under the same license as the libvirt-glib package.
3 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
34 #
4 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Cornish (Unified Orthography)\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=4; plural= (n==1) ? 0 : (n==2) ? 1 : (n == 3) ? 2 : "
1818 "3\n"
19 "X-Generator: Zanata 3.6.2\n"
19 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Libvirt package strings.
1 # Copyright (C) 2019 The Libvirt authors
2 # This file is distributed under the same license as the libvirt-glib package.
3 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
34 #
4 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Cornish (United Kingdom)\n"
13 "Language: kw-GB\n"
13 "Language: kw_GB\n"
1414 "MIME-Version: 1.0\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=4; plural= (n==1) ? 0 : (n==2) ? 1 : (n == 3) ? 2 : "
1818 "3\n"
19 "X-Generator: Zanata 3.6.2\n"
19 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:21+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Kirgyz (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=1; plural=0;\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
0 # Libvirt package strings.
1 # Copyright (C) 2019 The Libvirt authors
2 # This file is distributed under the same license as the libvirt-glib package.
3 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
4 #
5 #, fuzzy
6 msgid ""
7 msgstr ""
8 "Project-Id-Version: libvirt-glib 3.0.0\n"
9 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
10 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
11 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
12 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13 "Language-Team: LANGUAGE <LL@li.org>\n"
14 "Language: \n"
15 "MIME-Version: 1.0\n"
16 "Content-Type: text/plain; charset=UTF-8\n"
17 "Content-Transfer-Encoding: 8bit\n"
18
19 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: libvirt-gconfig/libvirt-gconfig-object.c:206
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: libvirt-gconfig/libvirt-gconfig-object.c:214
37 msgid "No XML schema associated with this config object"
38 msgstr ""
39
40 #: libvirt-gconfig/libvirt-gconfig-object.c:223
41 #, c-format
42 msgid "Unable to create RNG parser for %s"
43 msgstr ""
44
45 #: libvirt-gconfig/libvirt-gconfig-object.c:233
46 #, c-format
47 msgid "Unable to parse RNG %s"
48 msgstr ""
49
50 #: libvirt-gconfig/libvirt-gconfig-object.c:245
51 #, c-format
52 msgid "Unable to create RNG validation context %s"
53 msgstr ""
54
55 #: libvirt-gconfig/libvirt-gconfig-object.c:255
56 msgid "Unable to validate doc"
57 msgstr ""
58
59 #: libvirt-gobject/libvirt-gobject-connection.c:438
60 #, c-format
61 msgid "Connection %s is already open"
62 msgstr ""
63
64 #: libvirt-gobject/libvirt-gobject-connection.c:453
65 #, c-format
66 msgid "Unable to open %s"
67 msgstr ""
68
69 #: libvirt-gobject/libvirt-gobject-connection.c:464
70 msgid "Unable to get connection URI"
71 msgstr ""
72
73 #: libvirt-gobject/libvirt-gobject-connection.c:729
74 #: libvirt-gobject/libvirt-gobject-connection.c:817
75 #: libvirt-gobject/libvirt-gobject-connection.c:1504
76 #: libvirt-gobject/libvirt-gobject-connection.c:1761
77 msgid "Connection is not open"
78 msgstr ""
79
80 #: libvirt-gobject/libvirt-gobject-connection.c:742
81 msgid "Failed to fetch list of domains"
82 msgstr ""
83
84 #: libvirt-gobject/libvirt-gobject-connection.c:833
85 msgid "Failed to fetch list of pools"
86 msgstr ""
87
88 #: libvirt-gobject/libvirt-gobject-connection.c:1034
89 #: libvirt-gobject/libvirt-gobject-connection.c:1073
90 msgid "Connection is not opened"
91 msgstr ""
92
93 #: libvirt-gobject/libvirt-gobject-connection.c:1041
94 msgid "Unable to get hypervisor name"
95 msgstr ""
96
97 #: libvirt-gobject/libvirt-gobject-connection.c:1079
98 msgid "Unable to get hypervisor version"
99 msgstr ""
100
101 #: libvirt-gobject/libvirt-gobject-connection.c:1394
102 #: libvirt-gobject/libvirt-gobject-connection.c:1449
103 msgid "Failed to create domain"
104 msgstr ""
105
106 #: libvirt-gobject/libvirt-gobject-connection.c:1520
107 msgid "Failed to fetch list of interfaces"
108 msgstr ""
109
110 #: libvirt-gobject/libvirt-gobject-connection.c:1777
111 msgid "Failed to fetch list of networks"
112 msgstr ""
113
114 #: libvirt-gobject/libvirt-gobject-connection.c:2020
115 msgid "Failed to create storage pool"
116 msgstr ""
117
118 #: libvirt-gobject/libvirt-gobject-connection.c:2063
119 msgid "Unable to get node info"
120 msgstr ""
121
122 #: libvirt-gobject/libvirt-gobject-connection.c:2119
123 msgid "Unable to get domain capabilities"
124 msgstr ""
125
126 #: libvirt-gobject/libvirt-gobject-connection.c:2271
127 msgid "Unable to get capabilities"
128 msgstr ""
129
130 #: libvirt-gobject/libvirt-gobject-connection.c:2395
131 msgid "Unable to restore domain"
132 msgstr ""
133
134 #: libvirt-gobject/libvirt-gobject-stream.c:347
135 msgid "virStreamRecv call would block"
136 msgstr ""
137
138 #: libvirt-gobject/libvirt-gobject-stream.c:350
139 #: libvirt-gobject/libvirt-gobject-stream.c:466
140 #, c-format
141 msgid "Got virStreamRecv error in %s"
142 msgstr ""
143
144 #: libvirt-gobject/libvirt-gobject-stream.c:415
145 msgid "Unable to perform RecvAll"
146 msgstr ""
147
148 #: libvirt-gobject/libvirt-gobject-stream.c:463
149 msgid "virStreamSend call would block"
150 msgstr ""
151
152 #: libvirt-gobject/libvirt-gobject-stream.c:531
153 msgid "Unable to perform SendAll"
154 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:21+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Lithuanian (http://www.transifex.com/projects/p/libvirt-glib/"
1919 "%100<10 || n%100>=20) ? 1 : 2);\n"
2020 "X-Generator: Zanata 4.6.2\n"
2121
22 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
22 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2323 msgid "No XML document to parse"
2424 msgstr ""
2525
26 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
26 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2727 msgid "Unable to parse configuration"
2828 msgstr ""
2929
30 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
30 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3131 #, c-format
3232 msgid "XML data has no '%s' node"
3333 msgstr ""
3434
35 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
35 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3636 msgid "No XML document associated with this config object"
3737 msgstr ""
3838
39 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
39 #: libvirt-gconfig/libvirt-gconfig-object.c:214
4040 msgid "No XML schema associated with this config object"
4141 msgstr ""
4242
43 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
43 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4444 #, c-format
4545 msgid "Unable to create RNG parser for %s"
4646 msgstr ""
4747
48 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
48 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4949 #, c-format
5050 msgid "Unable to parse RNG %s"
5151 msgstr ""
5252
53 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
53 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5454 #, c-format
5555 msgid "Unable to create RNG validation context %s"
5656 msgstr ""
5757
58 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
58 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5959 msgid "Unable to validate doc"
6060 msgstr ""
6161
62 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
62 #: libvirt-gobject/libvirt-gobject-connection.c:438
6363 #, c-format
6464 msgid "Connection %s is already open"
6565 msgstr ""
6666
67 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
67 #: libvirt-gobject/libvirt-gobject-connection.c:453
6868 #, c-format
6969 msgid "Unable to open %s"
7070 msgstr ""
7171
72 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
72 #: libvirt-gobject/libvirt-gobject-connection.c:464
7373 msgid "Unable to get connection URI"
7474 msgstr ""
7575
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
76 #: libvirt-gobject/libvirt-gobject-connection.c:729
77 #: libvirt-gobject/libvirt-gobject-connection.c:817
78 #: libvirt-gobject/libvirt-gobject-connection.c:1504
79 #: libvirt-gobject/libvirt-gobject-connection.c:1761
8080 msgid "Connection is not open"
8181 msgstr ""
8282
83 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
83 #: libvirt-gobject/libvirt-gobject-connection.c:742
8484 msgid "Failed to fetch list of domains"
8585 msgstr ""
8686
87 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
87 #: libvirt-gobject/libvirt-gobject-connection.c:833
8888 msgid "Failed to fetch list of pools"
8989 msgstr ""
9090
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
91 #: libvirt-gobject/libvirt-gobject-connection.c:1034
92 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9393 msgid "Connection is not opened"
9494 msgstr ""
9595
96 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
96 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9797 msgid "Unable to get hypervisor name"
9898 msgstr ""
9999
100 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
100 #: libvirt-gobject/libvirt-gobject-connection.c:1079
101101 msgid "Unable to get hypervisor version"
102102 msgstr ""
103103
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
104 #: libvirt-gobject/libvirt-gobject-connection.c:1394
105 #: libvirt-gobject/libvirt-gobject-connection.c:1449
106106 msgid "Failed to create domain"
107107 msgstr ""
108108
109 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
109 #: libvirt-gobject/libvirt-gobject-connection.c:1520
110110 msgid "Failed to fetch list of interfaces"
111111 msgstr ""
112112
113 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
113 #: libvirt-gobject/libvirt-gobject-connection.c:1777
114114 msgid "Failed to fetch list of networks"
115115 msgstr ""
116116
117 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
117 #: libvirt-gobject/libvirt-gobject-connection.c:2020
118118 msgid "Failed to create storage pool"
119119 msgstr ""
120120
121 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
121 #: libvirt-gobject/libvirt-gobject-connection.c:2063
122122 msgid "Unable to get node info"
123123 msgstr ""
124124
125 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
125 #: libvirt-gobject/libvirt-gobject-connection.c:2119
126 msgid "Unable to get domain capabilities"
127 msgstr ""
128
129 #: libvirt-gobject/libvirt-gobject-connection.c:2271
126130 msgid "Unable to get capabilities"
127131 msgstr ""
128132
129 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
133 #: libvirt-gobject/libvirt-gobject-connection.c:2395
130134 msgid "Unable to restore domain"
131135 msgstr ""
132136
133 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
137 #: libvirt-gobject/libvirt-gobject-stream.c:347
134138 msgid "virStreamRecv call would block"
135139 msgstr ""
136140
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
138 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
141 #: libvirt-gobject/libvirt-gobject-stream.c:350
142 #: libvirt-gobject/libvirt-gobject-stream.c:466
139143 #, c-format
140144 msgid "Got virStreamRecv error in %s"
141145 msgstr ""
142146
143 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
147 #: libvirt-gobject/libvirt-gobject-stream.c:415
144148 msgid "Unable to perform RecvAll"
145149 msgstr ""
146150
147 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
151 #: libvirt-gobject/libvirt-gobject-stream.c:463
148152 msgid "virStreamSend call would block"
149153 msgstr ""
150154
151 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
155 #: libvirt-gobject/libvirt-gobject-stream.c:531
152156 msgid "Unable to perform SendAll"
153157 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:21+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Latvian (http://www.transifex.com/projects/p/libvirt-glib/"
1919 "2);\n"
2020 "X-Generator: Zanata 4.6.2\n"
2121
22 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
22 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2323 msgid "No XML document to parse"
2424 msgstr ""
2525
26 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
26 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2727 msgid "Unable to parse configuration"
2828 msgstr ""
2929
30 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
30 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3131 #, c-format
3232 msgid "XML data has no '%s' node"
3333 msgstr ""
3434
35 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
35 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3636 msgid "No XML document associated with this config object"
3737 msgstr ""
3838
39 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
39 #: libvirt-gconfig/libvirt-gconfig-object.c:214
4040 msgid "No XML schema associated with this config object"
4141 msgstr ""
4242
43 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
43 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4444 #, c-format
4545 msgid "Unable to create RNG parser for %s"
4646 msgstr ""
4747
48 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
48 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4949 #, c-format
5050 msgid "Unable to parse RNG %s"
5151 msgstr ""
5252
53 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
53 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5454 #, c-format
5555 msgid "Unable to create RNG validation context %s"
5656 msgstr ""
5757
58 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
58 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5959 msgid "Unable to validate doc"
6060 msgstr ""
6161
62 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
62 #: libvirt-gobject/libvirt-gobject-connection.c:438
6363 #, c-format
6464 msgid "Connection %s is already open"
6565 msgstr ""
6666
67 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
67 #: libvirt-gobject/libvirt-gobject-connection.c:453
6868 #, c-format
6969 msgid "Unable to open %s"
7070 msgstr ""
7171
72 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
72 #: libvirt-gobject/libvirt-gobject-connection.c:464
7373 msgid "Unable to get connection URI"
7474 msgstr ""
7575
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
76 #: libvirt-gobject/libvirt-gobject-connection.c:729
77 #: libvirt-gobject/libvirt-gobject-connection.c:817
78 #: libvirt-gobject/libvirt-gobject-connection.c:1504
79 #: libvirt-gobject/libvirt-gobject-connection.c:1761
8080 msgid "Connection is not open"
8181 msgstr ""
8282
83 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
83 #: libvirt-gobject/libvirt-gobject-connection.c:742
8484 msgid "Failed to fetch list of domains"
8585 msgstr ""
8686
87 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
87 #: libvirt-gobject/libvirt-gobject-connection.c:833
8888 msgid "Failed to fetch list of pools"
8989 msgstr ""
9090
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
91 #: libvirt-gobject/libvirt-gobject-connection.c:1034
92 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9393 msgid "Connection is not opened"
9494 msgstr ""
9595
96 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
96 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9797 msgid "Unable to get hypervisor name"
9898 msgstr ""
9999
100 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
100 #: libvirt-gobject/libvirt-gobject-connection.c:1079
101101 msgid "Unable to get hypervisor version"
102102 msgstr ""
103103
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
104 #: libvirt-gobject/libvirt-gobject-connection.c:1394
105 #: libvirt-gobject/libvirt-gobject-connection.c:1449
106106 msgid "Failed to create domain"
107107 msgstr ""
108108
109 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
109 #: libvirt-gobject/libvirt-gobject-connection.c:1520
110110 msgid "Failed to fetch list of interfaces"
111111 msgstr ""
112112
113 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
113 #: libvirt-gobject/libvirt-gobject-connection.c:1777
114114 msgid "Failed to fetch list of networks"
115115 msgstr ""
116116
117 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
117 #: libvirt-gobject/libvirt-gobject-connection.c:2020
118118 msgid "Failed to create storage pool"
119119 msgstr ""
120120
121 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
121 #: libvirt-gobject/libvirt-gobject-connection.c:2063
122122 msgid "Unable to get node info"
123123 msgstr ""
124124
125 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
125 #: libvirt-gobject/libvirt-gobject-connection.c:2119
126 msgid "Unable to get domain capabilities"
127 msgstr ""
128
129 #: libvirt-gobject/libvirt-gobject-connection.c:2271
126130 msgid "Unable to get capabilities"
127131 msgstr ""
128132
129 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
133 #: libvirt-gobject/libvirt-gobject-connection.c:2395
130134 msgid "Unable to restore domain"
131135 msgstr ""
132136
133 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
137 #: libvirt-gobject/libvirt-gobject-stream.c:347
134138 msgid "virStreamRecv call would block"
135139 msgstr ""
136140
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
138 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
141 #: libvirt-gobject/libvirt-gobject-stream.c:350
142 #: libvirt-gobject/libvirt-gobject-stream.c:466
139143 #, c-format
140144 msgid "Got virStreamRecv error in %s"
141145 msgstr ""
142146
143 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
147 #: libvirt-gobject/libvirt-gobject-stream.c:415
144148 msgid "Unable to perform RecvAll"
145149 msgstr ""
146150
147 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
151 #: libvirt-gobject/libvirt-gobject-stream.c:463
148152 msgid "virStreamSend call would block"
149153 msgstr ""
150154
151 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
155 #: libvirt-gobject/libvirt-gobject-stream.c:531
152156 msgid "Unable to perform SendAll"
153157 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:21+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Maithili (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:22+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Macedonian (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:22+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Malayalam (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:22+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Mongolian (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:22+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Marathi (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:22+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Malay (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=1; plural=0;\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:22+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Norwegian Bokmål (http://www.transifex.com/projects/p/libvirt-"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:22+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Low German (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:22+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Nepali (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:22+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Dutch (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:22+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Norwegian Nynorsk (http://www.transifex.com/projects/p/"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:22+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Northern Sotho (http://www.transifex.com/projects/p/libvirt-"
1818 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:22+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Oriya (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:22+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
1010 # Piotr Drąg <piotrdrag@gmail.com>, 2017. #zanata
1111 msgid ""
1212 msgstr ""
13 "Project-Id-Version: PACKAGE VERSION\n"
14 "Report-Msgid-Bugs-To: \n"
15 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
13 "Project-Id-Version: libvirt-glib 2.0.0\n"
14 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
15 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1616 "PO-Revision-Date: 2017-12-05 12:29+0000\n"
1717 "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
1818 "Language-Team: Polish (http://www.transifex.com/projects/p/libvirt-glib/"
2525 "|| n%100>=20) ? 1 : 2);\n"
2626 "X-Generator: Zanata 4.6.2\n"
2727
28 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
28 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2929 msgid "No XML document to parse"
3030 msgstr "Brak dokumentu XML do przetworzenia"
3131
32 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
32 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
3333 msgid "Unable to parse configuration"
3434 msgstr "Nie można przetworzyć konfiguracji"
3535
36 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
36 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3737 #, c-format
3838 msgid "XML data has no '%s' node"
3939 msgstr "Dane XML nie mają węzła „%s”"
4040
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
41 #: libvirt-gconfig/libvirt-gconfig-object.c:206
4242 msgid "No XML document associated with this config object"
4343 msgstr "Brak dokumentu XML powiązanego z tym obiektem konfiguracji"
4444
45 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
45 #: libvirt-gconfig/libvirt-gconfig-object.c:214
4646 msgid "No XML schema associated with this config object"
4747 msgstr "Brak schematu XML powiązanego z tym obiektem konfiguracji"
4848
49 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
49 #: libvirt-gconfig/libvirt-gconfig-object.c:223
5050 #, c-format
5151 msgid "Unable to create RNG parser for %s"
5252 msgstr "Nie można utworzyć parsera RNG dla %s"
5353
54 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
54 #: libvirt-gconfig/libvirt-gconfig-object.c:233
5555 #, c-format
5656 msgid "Unable to parse RNG %s"
5757 msgstr "Nie można przetworzyć RNG %s"
5858
59 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
59 #: libvirt-gconfig/libvirt-gconfig-object.c:245
6060 #, c-format
6161 msgid "Unable to create RNG validation context %s"
6262 msgstr "Nie można utworzyć kontekst sprawdzania RNG %s"
6363
64 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
64 #: libvirt-gconfig/libvirt-gconfig-object.c:255
6565 msgid "Unable to validate doc"
6666 msgstr "Nie można sprawdzić dokumentu"
6767
68 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
68 #: libvirt-gobject/libvirt-gobject-connection.c:438
6969 #, c-format
7070 msgid "Connection %s is already open"
7171 msgstr "Połączenie %s jest już otwarte"
7272
73 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
73 #: libvirt-gobject/libvirt-gobject-connection.c:453
7474 #, c-format
7575 msgid "Unable to open %s"
7676 msgstr "Nie można otworzyć %s"
7777
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
78 #: libvirt-gobject/libvirt-gobject-connection.c:464
7979 msgid "Unable to get connection URI"
8080 msgstr "Nie można uzyskać adresu URI połączenia"
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
83 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
85 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
82 #: libvirt-gobject/libvirt-gobject-connection.c:729
83 #: libvirt-gobject/libvirt-gobject-connection.c:817
84 #: libvirt-gobject/libvirt-gobject-connection.c:1504
85 #: libvirt-gobject/libvirt-gobject-connection.c:1761
8686 msgid "Connection is not open"
8787 msgstr "Połączenie nie jest otwarte"
8888
89 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
89 #: libvirt-gobject/libvirt-gobject-connection.c:742
9090 msgid "Failed to fetch list of domains"
9191 msgstr "Pobranie listy domen się nie powiodło"
9292
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
93 #: libvirt-gobject/libvirt-gobject-connection.c:833
9494 msgid "Failed to fetch list of pools"
9595 msgstr "Pobranie listy pul się nie powiodło"
9696
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
98 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
97 #: libvirt-gobject/libvirt-gobject-connection.c:1034
98 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9999 msgid "Connection is not opened"
100100 msgstr "Połączenie nie jest otwarte"
101101
102 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
102 #: libvirt-gobject/libvirt-gobject-connection.c:1041
103103 msgid "Unable to get hypervisor name"
104104 msgstr "Nie można uzyskać nazwy nadzorcy"
105105
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
106 #: libvirt-gobject/libvirt-gobject-connection.c:1079
107107 msgid "Unable to get hypervisor version"
108108 msgstr "Nie można uzyskać wersji nadzorcy"
109109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
111 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
110 #: libvirt-gobject/libvirt-gobject-connection.c:1394
111 #: libvirt-gobject/libvirt-gobject-connection.c:1449
112112 msgid "Failed to create domain"
113113 msgstr "Utworzenie domeny się nie powiodło"
114114
115 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
115 #: libvirt-gobject/libvirt-gobject-connection.c:1520
116116 msgid "Failed to fetch list of interfaces"
117117 msgstr "Pobranie listy interfejsów się nie powiodło"
118118
119 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
119 #: libvirt-gobject/libvirt-gobject-connection.c:1777
120120 msgid "Failed to fetch list of networks"
121121 msgstr "Pobranie listy sieci się nie powiodło"
122122
123 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
123 #: libvirt-gobject/libvirt-gobject-connection.c:2020
124124 msgid "Failed to create storage pool"
125125 msgstr "Utworzenie puli pamięci masowej się nie powiodło"
126126
127 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
127 #: libvirt-gobject/libvirt-gobject-connection.c:2063
128128 msgid "Unable to get node info"
129129 msgstr "Nie można uzyskać informacji o węźle"
130130
131 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
131 #: libvirt-gobject/libvirt-gobject-connection.c:2119
132 msgid "Unable to get domain capabilities"
133 msgstr ""
134
135 #: libvirt-gobject/libvirt-gobject-connection.c:2271
132136 msgid "Unable to get capabilities"
133137 msgstr "Nie można uzyskać możliwości"
134138
135 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
139 #: libvirt-gobject/libvirt-gobject-connection.c:2395
136140 msgid "Unable to restore domain"
137141 msgstr "Nie można przywrócić domeny"
138142
139 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
143 #: libvirt-gobject/libvirt-gobject-stream.c:347
140144 msgid "virStreamRecv call would block"
141145 msgstr "Wywołanie virStreamRecv spowodowałoby zablokowanie"
142146
143 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
147 #: libvirt-gobject/libvirt-gobject-stream.c:350
148 #: libvirt-gobject/libvirt-gobject-stream.c:466
145149 #, c-format
146150 msgid "Got virStreamRecv error in %s"
147151 msgstr "Wystąpił błąd virStreamRecv w %s"
148152
149 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
153 #: libvirt-gobject/libvirt-gobject-stream.c:415
150154 msgid "Unable to perform RecvAll"
151155 msgstr "Nie można wykonać RecvAll"
152156
153 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
157 #: libvirt-gobject/libvirt-gobject-stream.c:463
154158 msgid "virStreamSend call would block"
155159 msgstr "Wywołanie virStreamSend spowodowałoby zablokowanie"
156160
157 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
161 #: libvirt-gobject/libvirt-gobject-stream.c:531
158162 msgid "Unable to perform SendAll"
159163 msgstr "Nie można wykonać SendAll"
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:22+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Portuguese (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 # Fábio Olivé Leite <fabio.olive@gmail.com>, 2013
66 msgid ""
77 msgstr ""
8 "Project-Id-Version: PACKAGE VERSION\n"
9 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
8 "Project-Id-Version: libvirt-glib 2.0.0\n"
9 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
10 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1111 "PO-Revision-Date: 2014-12-17 12:23+0000\n"
1212 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1313 "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/"
1919 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
2020 "X-Generator: Zanata 4.6.2\n"
2121
22 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
22 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2323 msgid "No XML document to parse"
2424 msgstr "Nenhum documento XML para analisar"
2525
26 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
26 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2727 msgid "Unable to parse configuration"
2828 msgstr "Não foi possível ler a configuração"
2929
30 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
30 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3131 #, c-format
3232 msgid "XML data has no '%s' node"
3333 msgstr "Dados XML não possuem um nó '%s'"
3434
35 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
35 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3636 msgid "No XML document associated with this config object"
3737 msgstr "Nenhum documento XML associado a este objeto de configuração"
3838
39 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
39 #: libvirt-gconfig/libvirt-gconfig-object.c:214
4040 msgid "No XML schema associated with this config object"
4141 msgstr ""
4242
43 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
43 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4444 #, c-format
4545 msgid "Unable to create RNG parser for %s"
4646 msgstr "Não foi possível criar um analisador RNG para %s"
4747
48 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
48 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4949 #, c-format
5050 msgid "Unable to parse RNG %s"
5151 msgstr "Não foi possível analisar o RNG %s"
5252
53 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
53 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5454 #, c-format
5555 msgid "Unable to create RNG validation context %s"
5656 msgstr "Não foi possível criar o contexto de validação RNG %s"
5757
58 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
58 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5959 msgid "Unable to validate doc"
6060 msgstr "Não foi possível validar o documento"
6161
62 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
62 #: libvirt-gobject/libvirt-gobject-connection.c:438
6363 #, c-format
6464 msgid "Connection %s is already open"
6565 msgstr "Conexão %s já está aberta"
6666
67 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
67 #: libvirt-gobject/libvirt-gobject-connection.c:453
6868 #, c-format
6969 msgid "Unable to open %s"
7070 msgstr "Não foi possível abrir %s"
7171
72 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
72 #: libvirt-gobject/libvirt-gobject-connection.c:464
7373 msgid "Unable to get connection URI"
7474 msgstr "Não foi possível encontrar a URI da conexão"
7575
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
76 #: libvirt-gobject/libvirt-gobject-connection.c:729
77 #: libvirt-gobject/libvirt-gobject-connection.c:817
78 #: libvirt-gobject/libvirt-gobject-connection.c:1504
79 #: libvirt-gobject/libvirt-gobject-connection.c:1761
8080 msgid "Connection is not open"
8181 msgstr "A conexão não está aberta"
8282
83 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
83 #: libvirt-gobject/libvirt-gobject-connection.c:742
8484 msgid "Failed to fetch list of domains"
8585 msgstr ""
8686
87 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
87 #: libvirt-gobject/libvirt-gobject-connection.c:833
8888 msgid "Failed to fetch list of pools"
8989 msgstr ""
9090
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
91 #: libvirt-gobject/libvirt-gobject-connection.c:1034
92 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9393 msgid "Connection is not opened"
9494 msgstr "A conexão não está aberta"
9595
96 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
96 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9797 msgid "Unable to get hypervisor name"
9898 msgstr "Não foi possível encontrar o nome do hypervisor"
9999
100 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
100 #: libvirt-gobject/libvirt-gobject-connection.c:1079
101101 msgid "Unable to get hypervisor version"
102102 msgstr "Não foi possível encontrar a versão do hypervisor"
103103
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
104 #: libvirt-gobject/libvirt-gobject-connection.c:1394
105 #: libvirt-gobject/libvirt-gobject-connection.c:1449
106106 msgid "Failed to create domain"
107107 msgstr "Falha na criação do domínio"
108108
109 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
109 #: libvirt-gobject/libvirt-gobject-connection.c:1520
110110 msgid "Failed to fetch list of interfaces"
111111 msgstr ""
112112
113 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
113 #: libvirt-gobject/libvirt-gobject-connection.c:1777
114114 msgid "Failed to fetch list of networks"
115115 msgstr ""
116116
117 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
117 #: libvirt-gobject/libvirt-gobject-connection.c:2020
118118 msgid "Failed to create storage pool"
119119 msgstr "Falha na criação do storage pool"
120120
121 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
121 #: libvirt-gobject/libvirt-gobject-connection.c:2063
122122 msgid "Unable to get node info"
123123 msgstr "Não foi possível buscar informações do nó"
124124
125 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
125 #: libvirt-gobject/libvirt-gobject-connection.c:2119
126 msgid "Unable to get domain capabilities"
127 msgstr ""
128
129 #: libvirt-gobject/libvirt-gobject-connection.c:2271
126130 msgid "Unable to get capabilities"
127131 msgstr "Não foi possível buscar as capacidades"
128132
129 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
133 #: libvirt-gobject/libvirt-gobject-connection.c:2395
130134 msgid "Unable to restore domain"
131135 msgstr "Não foi possível restaurar o domínio"
132136
133 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
137 #: libvirt-gobject/libvirt-gobject-stream.c:347
134138 msgid "virStreamRecv call would block"
135139 msgstr "A chamada a virStreamRecv bloquearia"
136140
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
138 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
141 #: libvirt-gobject/libvirt-gobject-stream.c:350
142 #: libvirt-gobject/libvirt-gobject-stream.c:466
139143 #, c-format
140144 msgid "Got virStreamRecv error in %s"
141145 msgstr "Erro virStreamRecv em %s"
142146
143 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
147 #: libvirt-gobject/libvirt-gobject-stream.c:415
144148 msgid "Unable to perform RecvAll"
145149 msgstr "Não foi possível realizar um RecvAll"
146150
147 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
151 #: libvirt-gobject/libvirt-gobject-stream.c:463
148152 msgid "virStreamSend call would block"
149153 msgstr "A chamada a virStreamSend bloquearia"
150154
151 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
155 #: libvirt-gobject/libvirt-gobject-stream.c:531
152156 msgid "Unable to perform SendAll"
153157 msgstr "Não foi possível realizar um SendAll"
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:23+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Romanian (http://www.transifex.com/projects/p/libvirt-glib/"
1919 "2:1));\n"
2020 "X-Generator: Zanata 4.6.2\n"
2121
22 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
22 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2323 msgid "No XML document to parse"
2424 msgstr ""
2525
26 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
26 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2727 msgid "Unable to parse configuration"
2828 msgstr ""
2929
30 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
30 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3131 #, c-format
3232 msgid "XML data has no '%s' node"
3333 msgstr ""
3434
35 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
35 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3636 msgid "No XML document associated with this config object"
3737 msgstr ""
3838
39 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
39 #: libvirt-gconfig/libvirt-gconfig-object.c:214
4040 msgid "No XML schema associated with this config object"
4141 msgstr ""
4242
43 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
43 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4444 #, c-format
4545 msgid "Unable to create RNG parser for %s"
4646 msgstr ""
4747
48 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
48 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4949 #, c-format
5050 msgid "Unable to parse RNG %s"
5151 msgstr ""
5252
53 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
53 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5454 #, c-format
5555 msgid "Unable to create RNG validation context %s"
5656 msgstr ""
5757
58 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
58 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5959 msgid "Unable to validate doc"
6060 msgstr ""
6161
62 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
62 #: libvirt-gobject/libvirt-gobject-connection.c:438
6363 #, c-format
6464 msgid "Connection %s is already open"
6565 msgstr ""
6666
67 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
67 #: libvirt-gobject/libvirt-gobject-connection.c:453
6868 #, c-format
6969 msgid "Unable to open %s"
7070 msgstr ""
7171
72 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
72 #: libvirt-gobject/libvirt-gobject-connection.c:464
7373 msgid "Unable to get connection URI"
7474 msgstr ""
7575
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
76 #: libvirt-gobject/libvirt-gobject-connection.c:729
77 #: libvirt-gobject/libvirt-gobject-connection.c:817
78 #: libvirt-gobject/libvirt-gobject-connection.c:1504
79 #: libvirt-gobject/libvirt-gobject-connection.c:1761
8080 msgid "Connection is not open"
8181 msgstr ""
8282
83 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
83 #: libvirt-gobject/libvirt-gobject-connection.c:742
8484 msgid "Failed to fetch list of domains"
8585 msgstr ""
8686
87 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
87 #: libvirt-gobject/libvirt-gobject-connection.c:833
8888 msgid "Failed to fetch list of pools"
8989 msgstr ""
9090
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
91 #: libvirt-gobject/libvirt-gobject-connection.c:1034
92 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9393 msgid "Connection is not opened"
9494 msgstr ""
9595
96 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
96 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9797 msgid "Unable to get hypervisor name"
9898 msgstr ""
9999
100 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
100 #: libvirt-gobject/libvirt-gobject-connection.c:1079
101101 msgid "Unable to get hypervisor version"
102102 msgstr ""
103103
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
104 #: libvirt-gobject/libvirt-gobject-connection.c:1394
105 #: libvirt-gobject/libvirt-gobject-connection.c:1449
106106 msgid "Failed to create domain"
107107 msgstr ""
108108
109 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
109 #: libvirt-gobject/libvirt-gobject-connection.c:1520
110110 msgid "Failed to fetch list of interfaces"
111111 msgstr ""
112112
113 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
113 #: libvirt-gobject/libvirt-gobject-connection.c:1777
114114 msgid "Failed to fetch list of networks"
115115 msgstr ""
116116
117 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
117 #: libvirt-gobject/libvirt-gobject-connection.c:2020
118118 msgid "Failed to create storage pool"
119119 msgstr ""
120120
121 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
121 #: libvirt-gobject/libvirt-gobject-connection.c:2063
122122 msgid "Unable to get node info"
123123 msgstr ""
124124
125 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
125 #: libvirt-gobject/libvirt-gobject-connection.c:2119
126 msgid "Unable to get domain capabilities"
127 msgstr ""
128
129 #: libvirt-gobject/libvirt-gobject-connection.c:2271
126130 msgid "Unable to get capabilities"
127131 msgstr ""
128132
129 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
133 #: libvirt-gobject/libvirt-gobject-connection.c:2395
130134 msgid "Unable to restore domain"
131135 msgstr ""
132136
133 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
137 #: libvirt-gobject/libvirt-gobject-stream.c:347
134138 msgid "virStreamRecv call would block"
135139 msgstr ""
136140
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
138 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
141 #: libvirt-gobject/libvirt-gobject-stream.c:350
142 #: libvirt-gobject/libvirt-gobject-stream.c:466
139143 #, c-format
140144 msgid "Got virStreamRecv error in %s"
141145 msgstr ""
142146
143 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
147 #: libvirt-gobject/libvirt-gobject-stream.c:415
144148 msgid "Unable to perform RecvAll"
145149 msgstr ""
146150
147 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
151 #: libvirt-gobject/libvirt-gobject-stream.c:463
148152 msgid "virStreamSend call would block"
149153 msgstr ""
150154
151 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
155 #: libvirt-gobject/libvirt-gobject-stream.c:531
152156 msgid "Unable to perform SendAll"
153157 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 # Alexander Savchenko, 2014
66 msgid ""
77 msgstr ""
8 "Project-Id-Version: PACKAGE VERSION\n"
9 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
8 "Project-Id-Version: libvirt-glib 2.0.0\n"
9 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
10 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1111 "PO-Revision-Date: 2014-12-17 12:23+0000\n"
1212 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1313 "Language-Team: Russian (http://www.transifex.com/projects/p/libvirt-glib/"
2020 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
2121 "X-Generator: Zanata 4.6.2\n"
2222
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
23 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2424 msgid "No XML document to parse"
2525 msgstr ""
2626
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
27 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2828 msgid "Unable to parse configuration"
2929 msgstr ""
3030
31 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
31 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3232 #, c-format
3333 msgid "XML data has no '%s' node"
3434 msgstr ""
3535
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
36 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3737 msgid "No XML document associated with this config object"
3838 msgstr ""
3939
40 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
40 #: libvirt-gconfig/libvirt-gconfig-object.c:214
4141 msgid "No XML schema associated with this config object"
4242 msgstr ""
4343
44 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
44 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4545 #, c-format
4646 msgid "Unable to create RNG parser for %s"
4747 msgstr ""
4848
49 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
49 #: libvirt-gconfig/libvirt-gconfig-object.c:233
5050 #, c-format
5151 msgid "Unable to parse RNG %s"
5252 msgstr ""
5353
54 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
54 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5555 #, c-format
5656 msgid "Unable to create RNG validation context %s"
5757 msgstr ""
5858
59 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
59 #: libvirt-gconfig/libvirt-gconfig-object.c:255
6060 msgid "Unable to validate doc"
6161 msgstr ""
6262
63 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
63 #: libvirt-gobject/libvirt-gobject-connection.c:438
6464 #, c-format
6565 msgid "Connection %s is already open"
6666 msgstr ""
6767
68 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
68 #: libvirt-gobject/libvirt-gobject-connection.c:453
6969 #, c-format
7070 msgid "Unable to open %s"
7171 msgstr "Невозможно открыть %s"
7272
73 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
73 #: libvirt-gobject/libvirt-gobject-connection.c:464
7474 msgid "Unable to get connection URI"
7575 msgstr ""
7676
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
77 #: libvirt-gobject/libvirt-gobject-connection.c:729
78 #: libvirt-gobject/libvirt-gobject-connection.c:817
79 #: libvirt-gobject/libvirt-gobject-connection.c:1504
80 #: libvirt-gobject/libvirt-gobject-connection.c:1761
8181 msgid "Connection is not open"
8282 msgstr ""
8383
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
84 #: libvirt-gobject/libvirt-gobject-connection.c:742
8585 msgid "Failed to fetch list of domains"
8686 msgstr ""
8787
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
88 #: libvirt-gobject/libvirt-gobject-connection.c:833
8989 msgid "Failed to fetch list of pools"
9090 msgstr ""
9191
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
92 #: libvirt-gobject/libvirt-gobject-connection.c:1034
93 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9494 msgid "Connection is not opened"
9595 msgstr ""
9696
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
97 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9898 msgid "Unable to get hypervisor name"
9999 msgstr ""
100100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
101 #: libvirt-gobject/libvirt-gobject-connection.c:1079
102102 msgid "Unable to get hypervisor version"
103103 msgstr ""
104104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
105 #: libvirt-gobject/libvirt-gobject-connection.c:1394
106 #: libvirt-gobject/libvirt-gobject-connection.c:1449
107107 msgid "Failed to create domain"
108108 msgstr ""
109109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
110 #: libvirt-gobject/libvirt-gobject-connection.c:1520
111111 msgid "Failed to fetch list of interfaces"
112112 msgstr ""
113113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
114 #: libvirt-gobject/libvirt-gobject-connection.c:1777
115115 msgid "Failed to fetch list of networks"
116116 msgstr ""
117117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
118 #: libvirt-gobject/libvirt-gobject-connection.c:2020
119119 msgid "Failed to create storage pool"
120120 msgstr ""
121121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
122 #: libvirt-gobject/libvirt-gobject-connection.c:2063
123123 msgid "Unable to get node info"
124124 msgstr ""
125125
126 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
126 #: libvirt-gobject/libvirt-gobject-connection.c:2119
127 msgid "Unable to get domain capabilities"
128 msgstr ""
129
130 #: libvirt-gobject/libvirt-gobject-connection.c:2271
127131 msgid "Unable to get capabilities"
128132 msgstr ""
129133
130 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
134 #: libvirt-gobject/libvirt-gobject-connection.c:2395
131135 msgid "Unable to restore domain"
132136 msgstr ""
133137
134 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
138 #: libvirt-gobject/libvirt-gobject-stream.c:347
135139 msgid "virStreamRecv call would block"
136140 msgstr ""
137141
138 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
139 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
142 #: libvirt-gobject/libvirt-gobject-stream.c:350
143 #: libvirt-gobject/libvirt-gobject-stream.c:466
140144 #, c-format
141145 msgid "Got virStreamRecv error in %s"
142146 msgstr ""
143147
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
148 #: libvirt-gobject/libvirt-gobject-stream.c:415
145149 msgid "Unable to perform RecvAll"
146150 msgstr ""
147151
148 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
152 #: libvirt-gobject/libvirt-gobject-stream.c:463
149153 msgid "virStreamSend call would block"
150154 msgstr ""
151155
152 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
156 #: libvirt-gobject/libvirt-gobject-stream.c:531
153157 msgid "Unable to perform SendAll"
154158 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:23+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Sinhala (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:23+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Slovak (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:23+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Slovenian (http://www.transifex.com/projects/p/libvirt-glib/"
1919 "%100==4 ? 2 : 3);\n"
2020 "X-Generator: Zanata 4.6.2\n"
2121
22 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
22 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2323 msgid "No XML document to parse"
2424 msgstr ""
2525
26 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
26 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2727 msgid "Unable to parse configuration"
2828 msgstr ""
2929
30 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
30 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3131 #, c-format
3232 msgid "XML data has no '%s' node"
3333 msgstr ""
3434
35 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
35 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3636 msgid "No XML document associated with this config object"
3737 msgstr ""
3838
39 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
39 #: libvirt-gconfig/libvirt-gconfig-object.c:214
4040 msgid "No XML schema associated with this config object"
4141 msgstr ""
4242
43 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
43 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4444 #, c-format
4545 msgid "Unable to create RNG parser for %s"
4646 msgstr ""
4747
48 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
48 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4949 #, c-format
5050 msgid "Unable to parse RNG %s"
5151 msgstr ""
5252
53 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
53 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5454 #, c-format
5555 msgid "Unable to create RNG validation context %s"
5656 msgstr ""
5757
58 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
58 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5959 msgid "Unable to validate doc"
6060 msgstr ""
6161
62 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
62 #: libvirt-gobject/libvirt-gobject-connection.c:438
6363 #, c-format
6464 msgid "Connection %s is already open"
6565 msgstr ""
6666
67 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
67 #: libvirt-gobject/libvirt-gobject-connection.c:453
6868 #, c-format
6969 msgid "Unable to open %s"
7070 msgstr ""
7171
72 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
72 #: libvirt-gobject/libvirt-gobject-connection.c:464
7373 msgid "Unable to get connection URI"
7474 msgstr ""
7575
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
76 #: libvirt-gobject/libvirt-gobject-connection.c:729
77 #: libvirt-gobject/libvirt-gobject-connection.c:817
78 #: libvirt-gobject/libvirt-gobject-connection.c:1504
79 #: libvirt-gobject/libvirt-gobject-connection.c:1761
8080 msgid "Connection is not open"
8181 msgstr ""
8282
83 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
83 #: libvirt-gobject/libvirt-gobject-connection.c:742
8484 msgid "Failed to fetch list of domains"
8585 msgstr ""
8686
87 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
87 #: libvirt-gobject/libvirt-gobject-connection.c:833
8888 msgid "Failed to fetch list of pools"
8989 msgstr ""
9090
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
91 #: libvirt-gobject/libvirt-gobject-connection.c:1034
92 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9393 msgid "Connection is not opened"
9494 msgstr ""
9595
96 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
96 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9797 msgid "Unable to get hypervisor name"
9898 msgstr ""
9999
100 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
100 #: libvirt-gobject/libvirt-gobject-connection.c:1079
101101 msgid "Unable to get hypervisor version"
102102 msgstr ""
103103
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
104 #: libvirt-gobject/libvirt-gobject-connection.c:1394
105 #: libvirt-gobject/libvirt-gobject-connection.c:1449
106106 msgid "Failed to create domain"
107107 msgstr ""
108108
109 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
109 #: libvirt-gobject/libvirt-gobject-connection.c:1520
110110 msgid "Failed to fetch list of interfaces"
111111 msgstr ""
112112
113 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
113 #: libvirt-gobject/libvirt-gobject-connection.c:1777
114114 msgid "Failed to fetch list of networks"
115115 msgstr ""
116116
117 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
117 #: libvirt-gobject/libvirt-gobject-connection.c:2020
118118 msgid "Failed to create storage pool"
119119 msgstr ""
120120
121 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
121 #: libvirt-gobject/libvirt-gobject-connection.c:2063
122122 msgid "Unable to get node info"
123123 msgstr ""
124124
125 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
125 #: libvirt-gobject/libvirt-gobject-connection.c:2119
126 msgid "Unable to get domain capabilities"
127 msgstr ""
128
129 #: libvirt-gobject/libvirt-gobject-connection.c:2271
126130 msgid "Unable to get capabilities"
127131 msgstr ""
128132
129 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
133 #: libvirt-gobject/libvirt-gobject-connection.c:2395
130134 msgid "Unable to restore domain"
131135 msgstr ""
132136
133 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
137 #: libvirt-gobject/libvirt-gobject-stream.c:347
134138 msgid "virStreamRecv call would block"
135139 msgstr ""
136140
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
138 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
141 #: libvirt-gobject/libvirt-gobject-stream.c:350
142 #: libvirt-gobject/libvirt-gobject-stream.c:466
139143 #, c-format
140144 msgid "Got virStreamRecv error in %s"
141145 msgstr ""
142146
143 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
147 #: libvirt-gobject/libvirt-gobject-stream.c:415
144148 msgid "Unable to perform RecvAll"
145149 msgstr ""
146150
147 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
151 #: libvirt-gobject/libvirt-gobject-stream.c:463
148152 msgid "virStreamSend call would block"
149153 msgstr ""
150154
151 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
155 #: libvirt-gobject/libvirt-gobject-stream.c:531
152156 msgid "Unable to perform SendAll"
153157 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:23+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Albanian (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:23+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Serbian (http://www.transifex.com/projects/p/libvirt-glib/"
1919 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
2020 "X-Generator: Zanata 4.6.2\n"
2121
22 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
22 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2323 msgid "No XML document to parse"
2424 msgstr ""
2525
26 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
26 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2727 msgid "Unable to parse configuration"
2828 msgstr ""
2929
30 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
30 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3131 #, c-format
3232 msgid "XML data has no '%s' node"
3333 msgstr ""
3434
35 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
35 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3636 msgid "No XML document associated with this config object"
3737 msgstr ""
3838
39 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
39 #: libvirt-gconfig/libvirt-gconfig-object.c:214
4040 msgid "No XML schema associated with this config object"
4141 msgstr ""
4242
43 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
43 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4444 #, c-format
4545 msgid "Unable to create RNG parser for %s"
4646 msgstr ""
4747
48 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
48 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4949 #, c-format
5050 msgid "Unable to parse RNG %s"
5151 msgstr ""
5252
53 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
53 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5454 #, c-format
5555 msgid "Unable to create RNG validation context %s"
5656 msgstr ""
5757
58 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
58 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5959 msgid "Unable to validate doc"
6060 msgstr ""
6161
62 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
62 #: libvirt-gobject/libvirt-gobject-connection.c:438
6363 #, c-format
6464 msgid "Connection %s is already open"
6565 msgstr ""
6666
67 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
67 #: libvirt-gobject/libvirt-gobject-connection.c:453
6868 #, c-format
6969 msgid "Unable to open %s"
7070 msgstr ""
7171
72 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
72 #: libvirt-gobject/libvirt-gobject-connection.c:464
7373 msgid "Unable to get connection URI"
7474 msgstr ""
7575
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
76 #: libvirt-gobject/libvirt-gobject-connection.c:729
77 #: libvirt-gobject/libvirt-gobject-connection.c:817
78 #: libvirt-gobject/libvirt-gobject-connection.c:1504
79 #: libvirt-gobject/libvirt-gobject-connection.c:1761
8080 msgid "Connection is not open"
8181 msgstr ""
8282
83 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
83 #: libvirt-gobject/libvirt-gobject-connection.c:742
8484 msgid "Failed to fetch list of domains"
8585 msgstr ""
8686
87 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
87 #: libvirt-gobject/libvirt-gobject-connection.c:833
8888 msgid "Failed to fetch list of pools"
8989 msgstr ""
9090
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
91 #: libvirt-gobject/libvirt-gobject-connection.c:1034
92 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9393 msgid "Connection is not opened"
9494 msgstr ""
9595
96 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
96 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9797 msgid "Unable to get hypervisor name"
9898 msgstr ""
9999
100 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
100 #: libvirt-gobject/libvirt-gobject-connection.c:1079
101101 msgid "Unable to get hypervisor version"
102102 msgstr ""
103103
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
104 #: libvirt-gobject/libvirt-gobject-connection.c:1394
105 #: libvirt-gobject/libvirt-gobject-connection.c:1449
106106 msgid "Failed to create domain"
107107 msgstr ""
108108
109 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
109 #: libvirt-gobject/libvirt-gobject-connection.c:1520
110110 msgid "Failed to fetch list of interfaces"
111111 msgstr ""
112112
113 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
113 #: libvirt-gobject/libvirt-gobject-connection.c:1777
114114 msgid "Failed to fetch list of networks"
115115 msgstr ""
116116
117 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
117 #: libvirt-gobject/libvirt-gobject-connection.c:2020
118118 msgid "Failed to create storage pool"
119119 msgstr ""
120120
121 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
121 #: libvirt-gobject/libvirt-gobject-connection.c:2063
122122 msgid "Unable to get node info"
123123 msgstr ""
124124
125 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
125 #: libvirt-gobject/libvirt-gobject-connection.c:2119
126 msgid "Unable to get domain capabilities"
127 msgstr ""
128
129 #: libvirt-gobject/libvirt-gobject-connection.c:2271
126130 msgid "Unable to get capabilities"
127131 msgstr ""
128132
129 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
133 #: libvirt-gobject/libvirt-gobject-connection.c:2395
130134 msgid "Unable to restore domain"
131135 msgstr ""
132136
133 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
137 #: libvirt-gobject/libvirt-gobject-stream.c:347
134138 msgid "virStreamRecv call would block"
135139 msgstr ""
136140
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
138 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
141 #: libvirt-gobject/libvirt-gobject-stream.c:350
142 #: libvirt-gobject/libvirt-gobject-stream.c:466
139143 #, c-format
140144 msgid "Got virStreamRecv error in %s"
141145 msgstr ""
142146
143 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
147 #: libvirt-gobject/libvirt-gobject-stream.c:415
144148 msgid "Unable to perform RecvAll"
145149 msgstr ""
146150
147 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
151 #: libvirt-gobject/libvirt-gobject-stream.c:463
148152 msgid "virStreamSend call would block"
149153 msgstr ""
150154
151 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
155 #: libvirt-gobject/libvirt-gobject-stream.c:531
152156 msgid "Unable to perform SendAll"
153157 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:23+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/libvirt-"
1919 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
2020 "X-Generator: Zanata 4.6.2\n"
2121
22 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
22 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2323 msgid "No XML document to parse"
2424 msgstr ""
2525
26 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
26 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2727 msgid "Unable to parse configuration"
2828 msgstr ""
2929
30 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
30 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3131 #, c-format
3232 msgid "XML data has no '%s' node"
3333 msgstr ""
3434
35 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
35 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3636 msgid "No XML document associated with this config object"
3737 msgstr ""
3838
39 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
39 #: libvirt-gconfig/libvirt-gconfig-object.c:214
4040 msgid "No XML schema associated with this config object"
4141 msgstr ""
4242
43 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
43 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4444 #, c-format
4545 msgid "Unable to create RNG parser for %s"
4646 msgstr ""
4747
48 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
48 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4949 #, c-format
5050 msgid "Unable to parse RNG %s"
5151 msgstr ""
5252
53 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
53 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5454 #, c-format
5555 msgid "Unable to create RNG validation context %s"
5656 msgstr ""
5757
58 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
58 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5959 msgid "Unable to validate doc"
6060 msgstr ""
6161
62 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
62 #: libvirt-gobject/libvirt-gobject-connection.c:438
6363 #, c-format
6464 msgid "Connection %s is already open"
6565 msgstr ""
6666
67 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
67 #: libvirt-gobject/libvirt-gobject-connection.c:453
6868 #, c-format
6969 msgid "Unable to open %s"
7070 msgstr ""
7171
72 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
72 #: libvirt-gobject/libvirt-gobject-connection.c:464
7373 msgid "Unable to get connection URI"
7474 msgstr ""
7575
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
76 #: libvirt-gobject/libvirt-gobject-connection.c:729
77 #: libvirt-gobject/libvirt-gobject-connection.c:817
78 #: libvirt-gobject/libvirt-gobject-connection.c:1504
79 #: libvirt-gobject/libvirt-gobject-connection.c:1761
8080 msgid "Connection is not open"
8181 msgstr ""
8282
83 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
83 #: libvirt-gobject/libvirt-gobject-connection.c:742
8484 msgid "Failed to fetch list of domains"
8585 msgstr ""
8686
87 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
87 #: libvirt-gobject/libvirt-gobject-connection.c:833
8888 msgid "Failed to fetch list of pools"
8989 msgstr ""
9090
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
91 #: libvirt-gobject/libvirt-gobject-connection.c:1034
92 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9393 msgid "Connection is not opened"
9494 msgstr ""
9595
96 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
96 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9797 msgid "Unable to get hypervisor name"
9898 msgstr ""
9999
100 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
100 #: libvirt-gobject/libvirt-gobject-connection.c:1079
101101 msgid "Unable to get hypervisor version"
102102 msgstr ""
103103
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
104 #: libvirt-gobject/libvirt-gobject-connection.c:1394
105 #: libvirt-gobject/libvirt-gobject-connection.c:1449
106106 msgid "Failed to create domain"
107107 msgstr ""
108108
109 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
109 #: libvirt-gobject/libvirt-gobject-connection.c:1520
110110 msgid "Failed to fetch list of interfaces"
111111 msgstr ""
112112
113 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
113 #: libvirt-gobject/libvirt-gobject-connection.c:1777
114114 msgid "Failed to fetch list of networks"
115115 msgstr ""
116116
117 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
117 #: libvirt-gobject/libvirt-gobject-connection.c:2020
118118 msgid "Failed to create storage pool"
119119 msgstr ""
120120
121 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
121 #: libvirt-gobject/libvirt-gobject-connection.c:2063
122122 msgid "Unable to get node info"
123123 msgstr ""
124124
125 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
125 #: libvirt-gobject/libvirt-gobject-connection.c:2119
126 msgid "Unable to get domain capabilities"
127 msgstr ""
128
129 #: libvirt-gobject/libvirt-gobject-connection.c:2271
126130 msgid "Unable to get capabilities"
127131 msgstr ""
128132
129 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
133 #: libvirt-gobject/libvirt-gobject-connection.c:2395
130134 msgid "Unable to restore domain"
131135 msgstr ""
132136
133 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
137 #: libvirt-gobject/libvirt-gobject-stream.c:347
134138 msgid "virStreamRecv call would block"
135139 msgstr ""
136140
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
138 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
141 #: libvirt-gobject/libvirt-gobject-stream.c:350
142 #: libvirt-gobject/libvirt-gobject-stream.c:466
139143 #, c-format
140144 msgid "Got virStreamRecv error in %s"
141145 msgstr ""
142146
143 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
147 #: libvirt-gobject/libvirt-gobject-stream.c:415
144148 msgid "Unable to perform RecvAll"
145149 msgstr ""
146150
147 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
151 #: libvirt-gobject/libvirt-gobject-stream.c:463
148152 msgid "virStreamSend call would block"
149153 msgstr ""
150154
151 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
155 #: libvirt-gobject/libvirt-gobject-stream.c:531
152156 msgid "Unable to perform SendAll"
153157 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:23+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Swedish (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:23+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Tamil (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:24+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Telugu (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:24+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Tajik (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:24+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Thai (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=1; plural=0;\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:24+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Turkish (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Libvirt package strings.
1 # Copyright (C) 2019 The Libvirt authors
2 # This file is distributed under the same license as the libvirt-glib package.
3 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
34 #
4 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Twi\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=1; plural=0\n"
18 "X-Generator: Zanata 3.6.2\n"
18 "X-Generator: Zanata 4.6.2\n"
1919
20 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2121 msgid "No XML document to parse"
2222 msgstr ""
2323
24 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2525 msgid "Unable to parse configuration"
2626 msgstr ""
2727
28 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
2929 #, c-format
3030 msgid "XML data has no '%s' node"
3131 msgstr ""
3232
33 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
33 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3434 msgid "No XML document associated with this config object"
3535 msgstr ""
3636
37 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
37 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3838 msgid "No XML schema associated with this config object"
3939 msgstr ""
4040
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
41 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4242 #, c-format
4343 msgid "Unable to create RNG parser for %s"
4444 msgstr ""
4545
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
46 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4747 #, c-format
4848 msgid "Unable to parse RNG %s"
4949 msgstr ""
5050
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
51 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5252 #, c-format
5353 msgid "Unable to create RNG validation context %s"
5454 msgstr ""
5555
56 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
56 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5757 msgid "Unable to validate doc"
5858 msgstr ""
5959
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
60 #: libvirt-gobject/libvirt-gobject-connection.c:438
6161 #, c-format
6262 msgid "Connection %s is already open"
6363 msgstr ""
6464
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
65 #: libvirt-gobject/libvirt-gobject-connection.c:453
6666 #, c-format
6767 msgid "Unable to open %s"
6868 msgstr ""
6969
70 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
70 #: libvirt-gobject/libvirt-gobject-connection.c:464
7171 msgid "Unable to get connection URI"
7272 msgstr ""
7373
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
74 #: libvirt-gobject/libvirt-gobject-connection.c:729
75 #: libvirt-gobject/libvirt-gobject-connection.c:817
76 #: libvirt-gobject/libvirt-gobject-connection.c:1504
77 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7878 msgid "Connection is not open"
7979 msgstr ""
8080
81 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
81 #: libvirt-gobject/libvirt-gobject-connection.c:742
8282 msgid "Failed to fetch list of domains"
8383 msgstr ""
8484
85 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
85 #: libvirt-gobject/libvirt-gobject-connection.c:833
8686 msgid "Failed to fetch list of pools"
8787 msgstr ""
8888
89 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
89 #: libvirt-gobject/libvirt-gobject-connection.c:1034
90 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9191 msgid "Connection is not opened"
9292 msgstr ""
9393
94 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
94 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9595 msgid "Unable to get hypervisor name"
9696 msgstr ""
9797
98 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
98 #: libvirt-gobject/libvirt-gobject-connection.c:1079
9999 msgid "Unable to get hypervisor version"
100100 msgstr ""
101101
102 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
102 #: libvirt-gobject/libvirt-gobject-connection.c:1394
103 #: libvirt-gobject/libvirt-gobject-connection.c:1449
104104 msgid "Failed to create domain"
105105 msgstr ""
106106
107 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
107 #: libvirt-gobject/libvirt-gobject-connection.c:1520
108108 msgid "Failed to fetch list of interfaces"
109109 msgstr ""
110110
111 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
111 #: libvirt-gobject/libvirt-gobject-connection.c:1777
112112 msgid "Failed to fetch list of networks"
113113 msgstr ""
114114
115 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
115 #: libvirt-gobject/libvirt-gobject-connection.c:2020
116116 msgid "Failed to create storage pool"
117117 msgstr ""
118118
119 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
119 #: libvirt-gobject/libvirt-gobject-connection.c:2063
120120 msgid "Unable to get node info"
121121 msgstr ""
122122
123 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
123 #: libvirt-gobject/libvirt-gobject-connection.c:2119
124 msgid "Unable to get domain capabilities"
125 msgstr ""
126
127 #: libvirt-gobject/libvirt-gobject-connection.c:2271
124128 msgid "Unable to get capabilities"
125129 msgstr ""
126130
127 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
131 #: libvirt-gobject/libvirt-gobject-connection.c:2395
128132 msgid "Unable to restore domain"
129133 msgstr ""
130134
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
135 #: libvirt-gobject/libvirt-gobject-stream.c:347
132136 msgid "virStreamRecv call would block"
133137 msgstr ""
134138
135 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
139 #: libvirt-gobject/libvirt-gobject-stream.c:350
140 #: libvirt-gobject/libvirt-gobject-stream.c:466
137141 #, c-format
138142 msgid "Got virStreamRecv error in %s"
139143 msgstr ""
140144
141 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
145 #: libvirt-gobject/libvirt-gobject-stream.c:415
142146 msgid "Unable to perform RecvAll"
143147 msgstr ""
144148
145 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
149 #: libvirt-gobject/libvirt-gobject-stream.c:463
146150 msgid "virStreamSend call would block"
147151 msgstr ""
148152
149 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
153 #: libvirt-gobject/libvirt-gobject-stream.c:531
150154 msgid "Unable to perform SendAll"
151155 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
77 # Yuri Chornoivan <yurchor@ukr.net>, 2017. #zanata
88 msgid ""
99 msgstr ""
10 "Project-Id-Version: PACKAGE VERSION\n"
11 "Report-Msgid-Bugs-To: \n"
12 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
10 "Project-Id-Version: libvirt-glib 2.0.0\n"
11 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
12 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1313 "PO-Revision-Date: 2017-12-06 12:39+0000\n"
1414 "Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
1515 "Language-Team: Ukrainian (http://www.transifex.com/projects/p/libvirt-glib/"
2222 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
2323 "X-Generator: Zanata 4.6.2\n"
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2626 msgid "No XML document to parse"
2727 msgstr "Немає документа XML для обробки"
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
3030 msgid "Unable to parse configuration"
3131 msgstr "Не вдалося обробити налаштування"
3232
33 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
33 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3434 #, c-format
3535 msgid "XML data has no '%s' node"
3636 msgstr "У даних XML немає вузла «%s»"
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
38 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3939 msgid "No XML document associated with this config object"
4040 msgstr "З цим об’єктом налаштування не пов’язано жодного документа XML"
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
42 #: libvirt-gconfig/libvirt-gconfig-object.c:214
4343 msgid "No XML schema associated with this config object"
4444 msgstr "З цим об’єктом налаштування не пов’язано жодної схеми XML"
4545
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
46 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4747 #, c-format
4848 msgid "Unable to create RNG parser for %s"
4949 msgstr "Не вдалося створити обробник RNG для %s"
5050
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
51 #: libvirt-gconfig/libvirt-gconfig-object.c:233
5252 #, c-format
5353 msgid "Unable to parse RNG %s"
5454 msgstr "Не вдалося обробити RNG, %s"
5555
56 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
56 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5757 #, c-format
5858 msgid "Unable to create RNG validation context %s"
5959 msgstr "Не вдалося створити контекст перевірки RNG, %s"
6060
61 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
61 #: libvirt-gconfig/libvirt-gconfig-object.c:255
6262 msgid "Unable to validate doc"
6363 msgstr "Не вдалося перевірити документи"
6464
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
65 #: libvirt-gobject/libvirt-gobject-connection.c:438
6666 #, c-format
6767 msgid "Connection %s is already open"
6868 msgstr "З’єднання %s вже відкрито"
6969
70 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
70 #: libvirt-gobject/libvirt-gobject-connection.c:453
7171 #, c-format
7272 msgid "Unable to open %s"
7373 msgstr "Не вдалося відкрити %s"
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
75 #: libvirt-gobject/libvirt-gobject-connection.c:464
7676 msgid "Unable to get connection URI"
7777 msgstr "Не вдалося отримати адресу з’єднання"
7878
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
81 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
79 #: libvirt-gobject/libvirt-gobject-connection.c:729
80 #: libvirt-gobject/libvirt-gobject-connection.c:817
81 #: libvirt-gobject/libvirt-gobject-connection.c:1504
82 #: libvirt-gobject/libvirt-gobject-connection.c:1761
8383 msgid "Connection is not open"
8484 msgstr "З'єднання не відкрито"
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
86 #: libvirt-gobject/libvirt-gobject-connection.c:742
8787 msgid "Failed to fetch list of domains"
8888 msgstr "Не вдалося отримати список доменів"
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
90 #: libvirt-gobject/libvirt-gobject-connection.c:833
9191 msgid "Failed to fetch list of pools"
9292 msgstr "Не вдалося отримати список буферів"
9393
94 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
94 #: libvirt-gobject/libvirt-gobject-connection.c:1034
95 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9696 msgid "Connection is not opened"
9797 msgstr "З’єднання не відкрито"
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
99 #: libvirt-gobject/libvirt-gobject-connection.c:1041
100100 msgid "Unable to get hypervisor name"
101101 msgstr "Не вдалося отримати назву гіпервізора"
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
103 #: libvirt-gobject/libvirt-gobject-connection.c:1079
104104 msgid "Unable to get hypervisor version"
105105 msgstr "Не вдалося отримати версію гіпервізора"
106106
107 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
107 #: libvirt-gobject/libvirt-gobject-connection.c:1394
108 #: libvirt-gobject/libvirt-gobject-connection.c:1449
109109 msgid "Failed to create domain"
110110 msgstr "Не вдалося створити домен"
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
112 #: libvirt-gobject/libvirt-gobject-connection.c:1520
113113 msgid "Failed to fetch list of interfaces"
114114 msgstr "Не вдалося отримати список інтерфейсів"
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
116 #: libvirt-gobject/libvirt-gobject-connection.c:1777
117117 msgid "Failed to fetch list of networks"
118118 msgstr "Не вдалося отримати список мереж"
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
120 #: libvirt-gobject/libvirt-gobject-connection.c:2020
121121 msgid "Failed to create storage pool"
122122 msgstr "Не вдалося створити резервне сховище"
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
124 #: libvirt-gobject/libvirt-gobject-connection.c:2063
125125 msgid "Unable to get node info"
126126 msgstr "Не вдалося отримати дані щодо вузла"
127127
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
128 #: libvirt-gobject/libvirt-gobject-connection.c:2119
129 msgid "Unable to get domain capabilities"
130 msgstr ""
131
132 #: libvirt-gobject/libvirt-gobject-connection.c:2271
129133 msgid "Unable to get capabilities"
130134 msgstr "Не вдалося отримати список можливостей"
131135
132 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
136 #: libvirt-gobject/libvirt-gobject-connection.c:2395
133137 msgid "Unable to restore domain"
134138 msgstr "Не вдалося відновити домен"
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
140 #: libvirt-gobject/libvirt-gobject-stream.c:347
137141 msgid "virStreamRecv call would block"
138142 msgstr "Виклик virStreamRecv заблокується"
139143
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
141 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
144 #: libvirt-gobject/libvirt-gobject-stream.c:350
145 #: libvirt-gobject/libvirt-gobject-stream.c:466
142146 #, c-format
143147 msgid "Got virStreamRecv error in %s"
144148 msgstr "Отримано повідомлення про помилку virStreamRecv у %s"
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
150 #: libvirt-gobject/libvirt-gobject-stream.c:415
147151 msgid "Unable to perform RecvAll"
148152 msgstr "Не вдалося виконати RecvAll"
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
154 #: libvirt-gobject/libvirt-gobject-stream.c:463
151155 msgid "virStreamSend call would block"
152156 msgstr "Виклик virStreamSend заблокується"
153157
154 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
158 #: libvirt-gobject/libvirt-gobject-stream.c:531
155159 msgid "Unable to perform SendAll"
156160 msgstr "Не вдалося виконати SendAll"
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:24+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Urdu (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:24+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Vietnamese (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=1; plural=0;\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Libvirt package strings.
1 # Copyright (C) 2019 The Libvirt authors
2 # This file is distributed under the same license as the libvirt-glib package.
3 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
34 #
4 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
12 "Language-Team: wba\n"
12 "Language-Team: Warao\n"
1313 "Language: wba\n"
1414 "MIME-Version: 1.0\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=1; plural=0\n"
18 "X-Generator: Zanata 3.6.2\n"
18 "X-Generator: Zanata 4.6.2\n"
1919
20 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2121 msgid "No XML document to parse"
2222 msgstr ""
2323
24 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2525 msgid "Unable to parse configuration"
2626 msgstr ""
2727
28 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
2929 #, c-format
3030 msgid "XML data has no '%s' node"
3131 msgstr ""
3232
33 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
33 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3434 msgid "No XML document associated with this config object"
3535 msgstr ""
3636
37 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
37 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3838 msgid "No XML schema associated with this config object"
3939 msgstr ""
4040
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
41 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4242 #, c-format
4343 msgid "Unable to create RNG parser for %s"
4444 msgstr ""
4545
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
46 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4747 #, c-format
4848 msgid "Unable to parse RNG %s"
4949 msgstr ""
5050
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
51 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5252 #, c-format
5353 msgid "Unable to create RNG validation context %s"
5454 msgstr ""
5555
56 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
56 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5757 msgid "Unable to validate doc"
5858 msgstr ""
5959
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
60 #: libvirt-gobject/libvirt-gobject-connection.c:438
6161 #, c-format
6262 msgid "Connection %s is already open"
6363 msgstr ""
6464
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
65 #: libvirt-gobject/libvirt-gobject-connection.c:453
6666 #, c-format
6767 msgid "Unable to open %s"
6868 msgstr ""
6969
70 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
70 #: libvirt-gobject/libvirt-gobject-connection.c:464
7171 msgid "Unable to get connection URI"
7272 msgstr ""
7373
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
74 #: libvirt-gobject/libvirt-gobject-connection.c:729
75 #: libvirt-gobject/libvirt-gobject-connection.c:817
76 #: libvirt-gobject/libvirt-gobject-connection.c:1504
77 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7878 msgid "Connection is not open"
7979 msgstr ""
8080
81 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
81 #: libvirt-gobject/libvirt-gobject-connection.c:742
8282 msgid "Failed to fetch list of domains"
8383 msgstr ""
8484
85 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
85 #: libvirt-gobject/libvirt-gobject-connection.c:833
8686 msgid "Failed to fetch list of pools"
8787 msgstr ""
8888
89 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
89 #: libvirt-gobject/libvirt-gobject-connection.c:1034
90 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9191 msgid "Connection is not opened"
9292 msgstr ""
9393
94 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
94 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9595 msgid "Unable to get hypervisor name"
9696 msgstr ""
9797
98 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
98 #: libvirt-gobject/libvirt-gobject-connection.c:1079
9999 msgid "Unable to get hypervisor version"
100100 msgstr ""
101101
102 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
102 #: libvirt-gobject/libvirt-gobject-connection.c:1394
103 #: libvirt-gobject/libvirt-gobject-connection.c:1449
104104 msgid "Failed to create domain"
105105 msgstr ""
106106
107 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
107 #: libvirt-gobject/libvirt-gobject-connection.c:1520
108108 msgid "Failed to fetch list of interfaces"
109109 msgstr ""
110110
111 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
111 #: libvirt-gobject/libvirt-gobject-connection.c:1777
112112 msgid "Failed to fetch list of networks"
113113 msgstr ""
114114
115 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
115 #: libvirt-gobject/libvirt-gobject-connection.c:2020
116116 msgid "Failed to create storage pool"
117117 msgstr ""
118118
119 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
119 #: libvirt-gobject/libvirt-gobject-connection.c:2063
120120 msgid "Unable to get node info"
121121 msgstr ""
122122
123 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
123 #: libvirt-gobject/libvirt-gobject-connection.c:2119
124 msgid "Unable to get domain capabilities"
125 msgstr ""
126
127 #: libvirt-gobject/libvirt-gobject-connection.c:2271
124128 msgid "Unable to get capabilities"
125129 msgstr ""
126130
127 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
131 #: libvirt-gobject/libvirt-gobject-connection.c:2395
128132 msgid "Unable to restore domain"
129133 msgstr ""
130134
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
135 #: libvirt-gobject/libvirt-gobject-stream.c:347
132136 msgid "virStreamRecv call would block"
133137 msgstr ""
134138
135 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
139 #: libvirt-gobject/libvirt-gobject-stream.c:350
140 #: libvirt-gobject/libvirt-gobject-stream.c:466
137141 #, c-format
138142 msgid "Got virStreamRecv error in %s"
139143 msgstr ""
140144
141 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
145 #: libvirt-gobject/libvirt-gobject-stream.c:415
142146 msgid "Unable to perform RecvAll"
143147 msgstr ""
144148
145 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
149 #: libvirt-gobject/libvirt-gobject-stream.c:463
146150 msgid "virStreamSend call would block"
147151 msgstr ""
148152
149 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
153 #: libvirt-gobject/libvirt-gobject-stream.c:531
150154 msgid "Unable to perform SendAll"
151155 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Libvirt package strings.
1 # Copyright (C) 2019 The Libvirt authors
2 # This file is distributed under the same license as the libvirt-glib package.
3 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
34 #
4 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Yoruba\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=2; plural=(n != 1)\n"
18 "X-Generator: Zanata 3.6.2\n"
18 "X-Generator: Zanata 4.6.2\n"
1919
20 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2121 msgid "No XML document to parse"
2222 msgstr ""
2323
24 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2525 msgid "Unable to parse configuration"
2626 msgstr ""
2727
28 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
2929 #, c-format
3030 msgid "XML data has no '%s' node"
3131 msgstr ""
3232
33 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
33 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3434 msgid "No XML document associated with this config object"
3535 msgstr ""
3636
37 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
37 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3838 msgid "No XML schema associated with this config object"
3939 msgstr ""
4040
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
41 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4242 #, c-format
4343 msgid "Unable to create RNG parser for %s"
4444 msgstr ""
4545
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
46 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4747 #, c-format
4848 msgid "Unable to parse RNG %s"
4949 msgstr ""
5050
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
51 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5252 #, c-format
5353 msgid "Unable to create RNG validation context %s"
5454 msgstr ""
5555
56 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
56 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5757 msgid "Unable to validate doc"
5858 msgstr ""
5959
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
60 #: libvirt-gobject/libvirt-gobject-connection.c:438
6161 #, c-format
6262 msgid "Connection %s is already open"
6363 msgstr ""
6464
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
65 #: libvirt-gobject/libvirt-gobject-connection.c:453
6666 #, c-format
6767 msgid "Unable to open %s"
6868 msgstr ""
6969
70 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
70 #: libvirt-gobject/libvirt-gobject-connection.c:464
7171 msgid "Unable to get connection URI"
7272 msgstr ""
7373
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
74 #: libvirt-gobject/libvirt-gobject-connection.c:729
75 #: libvirt-gobject/libvirt-gobject-connection.c:817
76 #: libvirt-gobject/libvirt-gobject-connection.c:1504
77 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7878 msgid "Connection is not open"
7979 msgstr ""
8080
81 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
81 #: libvirt-gobject/libvirt-gobject-connection.c:742
8282 msgid "Failed to fetch list of domains"
8383 msgstr ""
8484
85 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
85 #: libvirt-gobject/libvirt-gobject-connection.c:833
8686 msgid "Failed to fetch list of pools"
8787 msgstr ""
8888
89 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
89 #: libvirt-gobject/libvirt-gobject-connection.c:1034
90 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9191 msgid "Connection is not opened"
9292 msgstr ""
9393
94 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
94 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9595 msgid "Unable to get hypervisor name"
9696 msgstr ""
9797
98 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
98 #: libvirt-gobject/libvirt-gobject-connection.c:1079
9999 msgid "Unable to get hypervisor version"
100100 msgstr ""
101101
102 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
102 #: libvirt-gobject/libvirt-gobject-connection.c:1394
103 #: libvirt-gobject/libvirt-gobject-connection.c:1449
104104 msgid "Failed to create domain"
105105 msgstr ""
106106
107 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
107 #: libvirt-gobject/libvirt-gobject-connection.c:1520
108108 msgid "Failed to fetch list of interfaces"
109109 msgstr ""
110110
111 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
111 #: libvirt-gobject/libvirt-gobject-connection.c:1777
112112 msgid "Failed to fetch list of networks"
113113 msgstr ""
114114
115 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
115 #: libvirt-gobject/libvirt-gobject-connection.c:2020
116116 msgid "Failed to create storage pool"
117117 msgstr ""
118118
119 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
119 #: libvirt-gobject/libvirt-gobject-connection.c:2063
120120 msgid "Unable to get node info"
121121 msgstr ""
122122
123 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
123 #: libvirt-gobject/libvirt-gobject-connection.c:2119
124 msgid "Unable to get domain capabilities"
125 msgstr ""
126
127 #: libvirt-gobject/libvirt-gobject-connection.c:2271
124128 msgid "Unable to get capabilities"
125129 msgstr ""
126130
127 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
131 #: libvirt-gobject/libvirt-gobject-connection.c:2395
128132 msgid "Unable to restore domain"
129133 msgstr ""
130134
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
135 #: libvirt-gobject/libvirt-gobject-stream.c:347
132136 msgid "virStreamRecv call would block"
133137 msgstr ""
134138
135 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
139 #: libvirt-gobject/libvirt-gobject-stream.c:350
140 #: libvirt-gobject/libvirt-gobject-stream.c:466
137141 #, c-format
138142 msgid "Got virStreamRecv error in %s"
139143 msgstr ""
140144
141 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
145 #: libvirt-gobject/libvirt-gobject-stream.c:415
142146 msgid "Unable to perform RecvAll"
143147 msgstr ""
144148
145 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
149 #: libvirt-gobject/libvirt-gobject-stream.c:463
146150 msgid "virStreamSend call would block"
147151 msgstr ""
148152
149 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
153 #: libvirt-gobject/libvirt-gobject-stream.c:531
150154 msgid "Unable to perform SendAll"
151155 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:24+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/libvirt-"
1818 "Plural-Forms: nplurals=1; plural=0;\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:24+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/"
1818 "Plural-Forms: nplurals=1; plural=0;\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:24+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/libvirt-"
1818 "Plural-Forms: nplurals=1; plural=0;\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Libvirt package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2018-10-10 10:55+0100\n"
7 "Project-Id-Version: libvirt-glib 2.0.0\n"
8 "Report-Msgid-Bugs-To: https://libvirt.org/bugs.html\n"
9 "POT-Creation-Date: 2019-11-26 12:38+0000\n"
1010 "PO-Revision-Date: 2014-12-17 12:25+0000\n"
1111 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1212 "Language-Team: Zulu (http://www.transifex.com/projects/p/libvirt-glib/"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919 "X-Generator: Zanata 4.6.2\n"
2020
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 #: libvirt-gconfig/libvirt-gconfig-helpers.c:141
2222 msgid "No XML document to parse"
2323 msgstr ""
2424
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 #: libvirt-gconfig/libvirt-gconfig-helpers.c:149
2626 msgid "Unable to parse configuration"
2727 msgstr ""
2828
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #: libvirt-gconfig/libvirt-gconfig-helpers.c:157
3030 #, c-format
3131 msgid "XML data has no '%s' node"
3232 msgstr ""
3333
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:206
34 #: libvirt-gconfig/libvirt-gconfig-object.c:206
3535 msgid "No XML document associated with this config object"
3636 msgstr ""
3737
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:214
38 #: libvirt-gconfig/libvirt-gconfig-object.c:214
3939 msgid "No XML schema associated with this config object"
4040 msgstr ""
4141
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:223
42 #: libvirt-gconfig/libvirt-gconfig-object.c:223
4343 #, c-format
4444 msgid "Unable to create RNG parser for %s"
4545 msgstr ""
4646
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:233
47 #: libvirt-gconfig/libvirt-gconfig-object.c:233
4848 #, c-format
4949 msgid "Unable to parse RNG %s"
5050 msgstr ""
5151
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:245
52 #: libvirt-gconfig/libvirt-gconfig-object.c:245
5353 #, c-format
5454 msgid "Unable to create RNG validation context %s"
5555 msgstr ""
5656
57 #: ../libvirt-gconfig/libvirt-gconfig-object.c:255
57 #: libvirt-gconfig/libvirt-gconfig-object.c:255
5858 msgid "Unable to validate doc"
5959 msgstr ""
6060
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:438
61 #: libvirt-gobject/libvirt-gobject-connection.c:438
6262 #, c-format
6363 msgid "Connection %s is already open"
6464 msgstr ""
6565
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:453
66 #: libvirt-gobject/libvirt-gobject-connection.c:453
6767 #, c-format
6868 msgid "Unable to open %s"
6969 msgstr ""
7070
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:464
71 #: libvirt-gobject/libvirt-gobject-connection.c:464
7272 msgid "Unable to get connection URI"
7373 msgstr ""
7474
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:729
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:817
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: ../libvirt-gobject/libvirt-gobject-connection.c:1761
75 #: libvirt-gobject/libvirt-gobject-connection.c:729
76 #: libvirt-gobject/libvirt-gobject-connection.c:817
77 #: libvirt-gobject/libvirt-gobject-connection.c:1504
78 #: libvirt-gobject/libvirt-gobject-connection.c:1761
7979 msgid "Connection is not open"
8080 msgstr ""
8181
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:742
82 #: libvirt-gobject/libvirt-gobject-connection.c:742
8383 msgid "Failed to fetch list of domains"
8484 msgstr ""
8585
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:833
86 #: libvirt-gobject/libvirt-gobject-connection.c:833
8787 msgid "Failed to fetch list of pools"
8888 msgstr ""
8989
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:1073
90 #: libvirt-gobject/libvirt-gobject-connection.c:1034
91 #: libvirt-gobject/libvirt-gobject-connection.c:1073
9292 msgid "Connection is not opened"
9393 msgstr ""
9494
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1041
95 #: libvirt-gobject/libvirt-gobject-connection.c:1041
9696 msgid "Unable to get hypervisor name"
9797 msgstr ""
9898
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1079
99 #: libvirt-gobject/libvirt-gobject-connection.c:1079
100100 msgid "Unable to get hypervisor version"
101101 msgstr ""
102102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1449
103 #: libvirt-gobject/libvirt-gobject-connection.c:1394
104 #: libvirt-gobject/libvirt-gobject-connection.c:1449
105105 msgid "Failed to create domain"
106106 msgstr ""
107107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1520
108 #: libvirt-gobject/libvirt-gobject-connection.c:1520
109109 msgid "Failed to fetch list of interfaces"
110110 msgstr ""
111111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1777
112 #: libvirt-gobject/libvirt-gobject-connection.c:1777
113113 msgid "Failed to fetch list of networks"
114114 msgstr ""
115115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:2018
116 #: libvirt-gobject/libvirt-gobject-connection.c:2020
117117 msgid "Failed to create storage pool"
118118 msgstr ""
119119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:2061
120 #: libvirt-gobject/libvirt-gobject-connection.c:2063
121121 msgid "Unable to get node info"
122122 msgstr ""
123123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:2101
124 #: libvirt-gobject/libvirt-gobject-connection.c:2119
125 msgid "Unable to get domain capabilities"
126 msgstr ""
127
128 #: libvirt-gobject/libvirt-gobject-connection.c:2271
125129 msgid "Unable to get capabilities"
126130 msgstr ""
127131
128 #: ../libvirt-gobject/libvirt-gobject-connection.c:2225
132 #: libvirt-gobject/libvirt-gobject-connection.c:2395
129133 msgid "Unable to restore domain"
130134 msgstr ""
131135
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:347
136 #: libvirt-gobject/libvirt-gobject-stream.c:347
133137 msgid "virStreamRecv call would block"
134138 msgstr ""
135139
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:350
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:466
140 #: libvirt-gobject/libvirt-gobject-stream.c:350
141 #: libvirt-gobject/libvirt-gobject-stream.c:466
138142 #, c-format
139143 msgid "Got virStreamRecv error in %s"
140144 msgstr ""
141145
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:415
146 #: libvirt-gobject/libvirt-gobject-stream.c:415
143147 msgid "Unable to perform RecvAll"
144148 msgstr ""
145149
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:463
150 #: libvirt-gobject/libvirt-gobject-stream.c:463
147151 msgid "virStreamSend call would block"
148152 msgstr ""
149153
150 #: ../libvirt-gobject/libvirt-gobject-stream.c:531
154 #: libvirt-gobject/libvirt-gobject-stream.c:531
151155 msgid "Unable to perform SendAll"
152156 msgstr ""
0 # Makefile.in generated by automake 1.15.1 from Makefile.am.
0 # Makefile.in generated by automake 1.16.1 from Makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
124124 subdir = tests
125125 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
126126 am__aclocal_m4_deps = $(top_srcdir)/m4/glibtests.m4 \
127 $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
128 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
129 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
130 $(top_srcdir)/m4/manywarnings.m4 \
127 $(top_srcdir)/m4/gtk-doc.m4 $(top_srcdir)/m4/introspection.m4 \
128 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
129 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
130 $(top_srcdir)/m4/lt~obsolete.m4 \
131 $(top_srcdir)/m4/manywarnings.m4 $(top_srcdir)/m4/pkg.m4 \
131132 $(top_srcdir)/m4/virt-compile-warnings.m4 \
132 $(top_srcdir)/m4/virt-gettext.m4 $(top_srcdir)/m4/warnings.m4 \
133 $(top_srcdir)/m4/virt-nls.m4 $(top_srcdir)/m4/warnings.m4 \
133134 $(top_srcdir)/configure.ac
134135 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
135136 $(ACLOCAL_M4)
138139 CONFIG_HEADER = $(top_builddir)/config.h
139140 CONFIG_CLEAN_FILES =
140141 CONFIG_CLEAN_VPATH_FILES =
142 am__EXEEXT_1 = test-gconfig$(EXEEXT) test-events$(EXEEXT)
143 am__EXEEXT_2 = $(am__EXEEXT_1)
144 @ENABLE_ALWAYS_BUILD_TESTS_FALSE@am__EXEEXT_3 = $(am__EXEEXT_2)
145 @ENABLE_INSTALLED_TESTS_TRUE@am__EXEEXT_4 = $(am__EXEEXT_1)
146 am__installdirs = "$(DESTDIR)$(installed_testdir)" \
147 "$(DESTDIR)$(installed_testdir)" \
148 "$(DESTDIR)$(installed_testdir)" \
149 "$(DESTDIR)$(installed_test_metadir)" \
150 "$(DESTDIR)$(installed_testdir)"
151 @ENABLE_ALWAYS_BUILD_TESTS_TRUE@am__EXEEXT_5 = $(am__EXEEXT_2)
152 PROGRAMS = $(installed_test_PROGRAMS) $(noinst_PROGRAMS)
141153 am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
142154 am__vpath_adj = case $$p in \
143155 $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
165177 || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
166178 $(am__cd) "$$dir" && rm -f $$files; }; \
167179 }
168 am__installdirs = "$(DESTDIR)$(installed_testdir)" \
169 "$(DESTDIR)$(installed_testdir)" \
170 "$(DESTDIR)$(installed_testdir)" \
171 "$(DESTDIR)$(installed_test_metadir)" \
172 "$(DESTDIR)$(installed_testdir)"
173180 LTLIBRARIES = $(installed_test_LTLIBRARIES) $(noinst_LTLIBRARIES)
174 am__EXEEXT_1 = test-gconfig$(EXEEXT) test-events$(EXEEXT)
175 am__EXEEXT_2 = $(am__EXEEXT_1)
176 @ENABLE_ALWAYS_BUILD_TESTS_FALSE@am__EXEEXT_3 = $(am__EXEEXT_2)
177 @ENABLE_INSTALLED_TESTS_TRUE@am__EXEEXT_4 = $(am__EXEEXT_1)
178 @ENABLE_ALWAYS_BUILD_TESTS_TRUE@am__EXEEXT_5 = $(am__EXEEXT_2)
179 PROGRAMS = $(installed_test_PROGRAMS) $(noinst_PROGRAMS)
180181 test_events_SOURCES = test-events.c
181182 test_events_OBJECTS = test-events.$(OBJEXT)
182183 test_events_LDADD = $(LDADD)
213214 am__v_at_1 =
214215 DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
215216 depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp
216 am__depfiles_maybe = depfiles
217 am__maybe_remake_depfiles = depfiles
218 am__depfiles_remade = ./$(DEPDIR)/test-events.Po \
219 ./$(DEPDIR)/test-gconfig.Po
217220 am__mv = mv -f
218221 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
219222 $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
443446 $(top_srcdir)/build-aux/test-driver
444447 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
445448 ACLOCAL = @ACLOCAL@
446 ALL_LINGUAS = @ALL_LINGUAS@
447449 AMTAR = @AMTAR@
448450 AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
449451 AR = @AR@
474476 EGREP = @EGREP@
475477 EXEEXT = @EXEEXT@
476478 FGREP = @FGREP@
477 GETTEXT_PACKAGE = @GETTEXT_PACKAGE@
478479 GIO2_CFLAGS = @GIO2_CFLAGS@
479480 GIO2_LIBS = @GIO2_LIBS@
480481 GLIB2_CFLAGS = @GLIB2_CFLAGS@
481482 GLIB2_LIBS = @GLIB2_LIBS@
482483 GLIB2_REQUIRED = @GLIB2_REQUIRED@
484 GLIB2_VERSION_SYMBOL = @GLIB2_VERSION_SYMBOL@
483485 GLIB_MKENUMS = @GLIB_MKENUMS@
484 GMSGFMT = @GMSGFMT@
485486 GOBJECT2_CFLAGS = @GOBJECT2_CFLAGS@
486487 GOBJECT2_LIBS = @GOBJECT2_LIBS@
487488 GREP = @GREP@
499500 INSTALL_PROGRAM = @INSTALL_PROGRAM@
500501 INSTALL_SCRIPT = @INSTALL_SCRIPT@
501502 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
502 INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
503 INTLTOOL_MERGE = @INTLTOOL_MERGE@
504 INTLTOOL_PERL = @INTLTOOL_PERL@
505 INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
506 INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@
507 INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@
508 INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@
509 INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@
510503 INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@
511504 INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@
512505 INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@
564557 SET_MAKE = @SET_MAKE@
565558 SHELL = @SHELL@
566559 STRIP = @STRIP@
567 USE_NLS = @USE_NLS@
568560 VAPIGEN = @VAPIGEN@
569561 VERSION = @VERSION@
570562 WARN_CFLAGS = @WARN_CFLAGS@
604596 install_sh = @install_sh@
605597 installed_test_metadir = @installed_test_metadir@
606598 installed_testdir = @installed_testdir@
607 intltool__v_merge_options_ = @intltool__v_merge_options_@
608 intltool__v_merge_options_0 = @intltool__v_merge_options_0@
609599 libdir = @libdir@
610600 libexecdir = @libexecdir@
611601 localedir = @localedir@
715705 *config.status*) \
716706 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
717707 *) \
718 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
719 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
708 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
709 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
720710 esac;
721711 $(top_srcdir)/build-aux/glib-tap.mk $(am__empty):
722712
728718 $(ACLOCAL_M4): $(am__aclocal_m4_deps)
729719 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
730720 $(am__aclocal_m4_deps):
731
732 clean-checkLTLIBRARIES:
733 -test -z "$(check_LTLIBRARIES)" || rm -f $(check_LTLIBRARIES)
734 @list='$(check_LTLIBRARIES)'; \
735 locs=`for p in $$list; do echo $$p; done | \
736 sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
737 sort -u`; \
738 test -z "$$locs" || { \
739 echo rm -f $${locs}; \
740 rm -f $${locs}; \
741 }
742
743 install-installed_testLTLIBRARIES: $(installed_test_LTLIBRARIES)
744 @$(NORMAL_INSTALL)
745 @list='$(installed_test_LTLIBRARIES)'; test -n "$(installed_testdir)" || list=; \
746 list2=; for p in $$list; do \
747 if test -f $$p; then \
748 list2="$$list2 $$p"; \
749 else :; fi; \
750 done; \
751 test -z "$$list2" || { \
752 echo " $(MKDIR_P) '$(DESTDIR)$(installed_testdir)'"; \
753 $(MKDIR_P) "$(DESTDIR)$(installed_testdir)" || exit 1; \
754 echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(installed_testdir)'"; \
755 $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(installed_testdir)"; \
756 }
757
758 uninstall-installed_testLTLIBRARIES:
759 @$(NORMAL_UNINSTALL)
760 @list='$(installed_test_LTLIBRARIES)'; test -n "$(installed_testdir)" || list=; \
761 for p in $$list; do \
762 $(am__strip_dir) \
763 echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(installed_testdir)/$$f'"; \
764 $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(installed_testdir)/$$f"; \
765 done
766
767 clean-installed_testLTLIBRARIES:
768 -test -z "$(installed_test_LTLIBRARIES)" || rm -f $(installed_test_LTLIBRARIES)
769 @list='$(installed_test_LTLIBRARIES)'; \
770 locs=`for p in $$list; do echo $$p; done | \
771 sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
772 sort -u`; \
773 test -z "$$locs" || { \
774 echo rm -f $${locs}; \
775 rm -f $${locs}; \
776 }
777
778 clean-noinstLTLIBRARIES:
779 -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
780 @list='$(noinst_LTLIBRARIES)'; \
781 locs=`for p in $$list; do echo $$p; done | \
782 sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
783 sort -u`; \
784 test -z "$$locs" || { \
785 echo rm -f $${locs}; \
786 rm -f $${locs}; \
787 }
788721
789722 clean-checkPROGRAMS:
790723 @list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \
853786 echo " rm -f" $$list; \
854787 rm -f $$list
855788
789 clean-checkLTLIBRARIES:
790 -test -z "$(check_LTLIBRARIES)" || rm -f $(check_LTLIBRARIES)
791 @list='$(check_LTLIBRARIES)'; \
792 locs=`for p in $$list; do echo $$p; done | \
793 sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
794 sort -u`; \
795 test -z "$$locs" || { \
796 echo rm -f $${locs}; \
797 rm -f $${locs}; \
798 }
799
800 install-installed_testLTLIBRARIES: $(installed_test_LTLIBRARIES)
801 @$(NORMAL_INSTALL)
802 @list='$(installed_test_LTLIBRARIES)'; test -n "$(installed_testdir)" || list=; \
803 list2=; for p in $$list; do \
804 if test -f $$p; then \
805 list2="$$list2 $$p"; \
806 else :; fi; \
807 done; \
808 test -z "$$list2" || { \
809 echo " $(MKDIR_P) '$(DESTDIR)$(installed_testdir)'"; \
810 $(MKDIR_P) "$(DESTDIR)$(installed_testdir)" || exit 1; \
811 echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(installed_testdir)'"; \
812 $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(installed_testdir)"; \
813 }
814
815 uninstall-installed_testLTLIBRARIES:
816 @$(NORMAL_UNINSTALL)
817 @list='$(installed_test_LTLIBRARIES)'; test -n "$(installed_testdir)" || list=; \
818 for p in $$list; do \
819 $(am__strip_dir) \
820 echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(installed_testdir)/$$f'"; \
821 $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(installed_testdir)/$$f"; \
822 done
823
824 clean-installed_testLTLIBRARIES:
825 -test -z "$(installed_test_LTLIBRARIES)" || rm -f $(installed_test_LTLIBRARIES)
826 @list='$(installed_test_LTLIBRARIES)'; \
827 locs=`for p in $$list; do echo $$p; done | \
828 sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
829 sort -u`; \
830 test -z "$$locs" || { \
831 echo rm -f $${locs}; \
832 rm -f $${locs}; \
833 }
834
835 clean-noinstLTLIBRARIES:
836 -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
837 @list='$(noinst_LTLIBRARIES)'; \
838 locs=`for p in $$list; do echo $$p; done | \
839 sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
840 sort -u`; \
841 test -z "$$locs" || { \
842 echo rm -f $${locs}; \
843 rm -f $${locs}; \
844 }
845
856846 test-events$(EXEEXT): $(test_events_OBJECTS) $(test_events_DEPENDENCIES) $(EXTRA_test_events_DEPENDENCIES)
857847 @rm -f test-events$(EXEEXT)
858848 $(AM_V_CCLD)$(LINK) $(test_events_OBJECTS) $(test_events_LDADD) $(LIBS)
902892 distclean-compile:
903893 -rm -f *.tab.c
904894
905 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-events.Po@am__quote@
906 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-gconfig.Po@am__quote@
895 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-events.Po@am__quote@ # am--include-marker
896 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-gconfig.Po@am__quote@ # am--include-marker
897
898 $(am__depfiles_remade):
899 @$(MKDIR_P) $(@D)
900 @echo '# dummy' >$@-t && $(am__mv) $@-t $@
901
902 am--depfiles: $(am__depfiles_remade)
907903
908904 .c.o:
909905 @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
11491145 fi; \
11501146 $$success || exit 1
11511147
1152 check-TESTS:
1148 check-TESTS: $(check_PROGRAMS) $(check_LTLIBRARIES) $(check_SCRIPTS) $(check_DATA)
11531149 @list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
11541150 @list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
11551151 @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
11591155 log_list=`echo $$log_list`; trs_list=`echo $$trs_list`; \
11601156 $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) TEST_LOGS="$$log_list"; \
11611157 exit $$?;
1162 recheck: all $(check_LTLIBRARIES) $(check_PROGRAMS) $(check_SCRIPTS) $(check_DATA)
1158 recheck: all $(check_PROGRAMS) $(check_LTLIBRARIES) $(check_SCRIPTS) $(check_DATA)
11631159 @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
11641160 @set +e; $(am__set_TESTS_bases); \
11651161 bases=`for i in $$bases; do echo $$i; done \
11991195 @am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
12001196 @am__EXEEXT_TRUE@ "$$tst" $(AM_TESTS_FD_REDIRECT)
12011197
1202 distdir: $(DISTFILES)
1198 distdir: $(BUILT_SOURCES)
1199 $(MAKE) $(AM_MAKEFLAGS) distdir-am
1200
1201 distdir-am: $(DISTFILES)
12031202 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
12041203 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
12051204 list='$(DISTFILES)'; \
12301229 fi; \
12311230 done
12321231 check-am: all-am
1233 $(MAKE) $(AM_MAKEFLAGS) $(check_LTLIBRARIES) $(check_PROGRAMS) \
1232 $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS) $(check_LTLIBRARIES) \
12341233 $(check_SCRIPTS) $(check_DATA)
12351234 $(MAKE) $(AM_MAKEFLAGS) check-TESTS
12361235 check: $(BUILT_SOURCES)
12371236 $(MAKE) $(AM_MAKEFLAGS) check-am
1238 all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(SCRIPTS) $(DATA)
1237 all-am: Makefile $(PROGRAMS) $(LTLIBRARIES) $(SCRIPTS) $(DATA)
12391238 installdirs:
12401239 for dir in "$(DESTDIR)$(installed_testdir)" "$(DESTDIR)$(installed_testdir)" "$(DESTDIR)$(installed_testdir)" "$(DESTDIR)$(installed_test_metadir)" "$(DESTDIR)$(installed_testdir)"; do \
12411240 test -z "$$dir" || $(MKDIR_P) "$$dir"; \
12861285 mostlyclean-am
12871286
12881287 distclean: distclean-am
1289 -rm -rf ./$(DEPDIR)
1288 -rm -f ./$(DEPDIR)/test-events.Po
1289 -rm -f ./$(DEPDIR)/test-gconfig.Po
12901290 -rm -f Makefile
12911291 distclean-am: clean-am distclean-compile distclean-generic \
12921292 distclean-tags
13351335 installcheck-am:
13361336
13371337 maintainer-clean: maintainer-clean-am
1338 -rm -rf ./$(DEPDIR)
1338 -rm -f ./$(DEPDIR)/test-events.Po
1339 -rm -f ./$(DEPDIR)/test-gconfig.Po
13391340 -rm -f Makefile
13401341 maintainer-clean-am: distclean-am maintainer-clean-generic
13411342
13601361
13611362 .MAKE: all check check-am install install-am install-strip
13621363
1363 .PHONY: CTAGS GTAGS TAGS all all-am check check-TESTS check-am clean \
1364 clean-checkLTLIBRARIES clean-checkPROGRAMS clean-generic \
1365 clean-installed_testLTLIBRARIES clean-installed_testPROGRAMS \
1366 clean-libtool clean-noinstLTLIBRARIES clean-noinstPROGRAMS \
1367 cscopelist-am ctags ctags-am distclean distclean-compile \
1368 distclean-generic distclean-libtool distclean-tags distdir dvi \
1369 dvi-am html html-am info info-am install install-am \
1370 install-data install-data-am install-dvi install-dvi-am \
1371 install-exec install-exec-am install-html install-html-am \
1372 install-info install-info-am install-installed_testLTLIBRARIES \
1364 .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-TESTS \
1365 check-am clean clean-checkLTLIBRARIES clean-checkPROGRAMS \
1366 clean-generic clean-installed_testLTLIBRARIES \
1367 clean-installed_testPROGRAMS clean-libtool \
1368 clean-noinstLTLIBRARIES clean-noinstPROGRAMS cscopelist-am \
1369 ctags ctags-am distclean distclean-compile distclean-generic \
1370 distclean-libtool distclean-tags distdir dvi dvi-am html \
1371 html-am info info-am install install-am install-data \
1372 install-data-am install-dvi install-dvi-am install-exec \
1373 install-exec-am install-html install-html-am install-info \
1374 install-info-am install-installed_testLTLIBRARIES \
13731375 install-installed_testPROGRAMS install-installed_testSCRIPTS \
13741376 install-installed_test_metaDATA install-man \
13751377 install-nobase_installed_testDATA install-pdf install-pdf-am \
214214 gvir_config_domain_os_set_os_type(os, GVIR_CONFIG_DOMAIN_OS_TYPE_HVM);
215215 gvir_config_domain_os_set_arch(os, "x86_64");
216216 gvir_config_domain_os_set_machine(os, "q35");
217 gvir_config_domain_os_set_firmware(os, GVIR_CONFIG_DOMAIN_OS_FIRMWARE_EFI);
217218 g_assert_cmpint(gvir_config_domain_os_get_os_type(os), ==, GVIR_CONFIG_DOMAIN_OS_TYPE_HVM);
218219 g_assert_cmpstr(gvir_config_domain_os_get_arch(os), ==, "x86_64");
219220 g_assert_cmpstr(gvir_config_domain_os_get_machine(os), ==, "q35");
221 g_assert_cmpint(gvir_config_domain_os_get_firmware(os), ==, GVIR_CONFIG_DOMAIN_OS_FIRMWARE_EFI);
220222 devices = g_list_append(devices,
221223 GINT_TO_POINTER(GVIR_CONFIG_DOMAIN_OS_BOOT_DEVICE_CDROM));
222224 devices = g_list_append(devices,
232234 g_assert(os != NULL);
233235 g_assert_cmpstr(gvir_config_domain_os_get_arch(os), ==, "x86_64");
234236 g_assert_cmpint(gvir_config_domain_os_get_os_type(os), ==, GVIR_CONFIG_DOMAIN_OS_TYPE_HVM);
237 g_assert_cmpstr(gvir_config_domain_os_get_machine(os), ==, "q35");
238 g_assert_cmpint(gvir_config_domain_os_get_firmware(os), ==, GVIR_CONFIG_DOMAIN_OS_FIRMWARE_EFI);
235239 domain_os_check_boot_devices(os);
236240 g_object_unref(G_OBJECT(os));
237241
789793 g_free(xml);
790794 }
791795
796 static void test_domain_capabilities_os(void)
797 {
798 GVirConfigDomainCapabilities *domain_caps;
799 GVirConfigDomainCapabilitiesOs *os;
800 GList *firmwares, *l;
801 gsize i;
802 GVirConfigDomainOsFirmware expected_firmwares[] = {GVIR_CONFIG_DOMAIN_OS_FIRMWARE_BIOS,
803 GVIR_CONFIG_DOMAIN_OS_FIRMWARE_EFI};
804 GError *error = NULL;
805 gchar *xml;
806
807 xml = load_xml("gconfig-domain-capabilities-os.xml");
808
809 domain_caps = gvir_config_domain_capabilities_new_from_xml(xml, &error);
810 g_assert_no_error(error);
811
812 os = gvir_config_domain_capabilities_get_os(domain_caps);
813 g_assert_nonnull(os);
814
815 firmwares = gvir_config_domain_capabilities_os_get_firmwares(os);
816 g_assert_nonnull(firmwares);
817
818 for (l = firmwares, i = 0; l != NULL; l = l->next, i++)
819 g_assert_cmpint(GPOINTER_TO_INT(l->data), ==, expected_firmwares[i]);
820
821
822 g_list_free(firmwares);
823 g_object_unref(os);
824 g_object_unref(domain_caps);
825 g_free(xml);
826 }
792827
793828 int main(int argc, char **argv)
794829 {
823858 test_domain_device_pci_hostdev);
824859 g_test_add_func("/libvirt-gconfig/domain-device-unknown",
825860 test_domain_device_unknown);
861 g_test_add_func("/libvirt-gconfig/domain-capabilities-os",
862 test_domain_capabilities_os);
826863
827864 return g_test_run();
828865 }
0 <domainCapabilities>
1 <os supported='yes'>
2 <enum name='firmware'>
3 <value>bios</value>
4 <value>efi</value>
5 </enum>
6 <loader supported='yes'>
7 <value>/usr/share/edk2/ovmf/OVMF_CODE.fd</value>
8 <value>/usr/share/edk2/aarch64/QEMU_EFI-pflash.raw</value>
9 <enum name='type'>
10 <value>rom</value>
11 <value>pflash</value>
12 </enum>
13 <enum name='readonly'>
14 <value>yes</value>
15 <value>no</value>
16 </enum>
17 <enum name='secure'>
18 <value>no</value>
19 </enum>
20 </loader>
21 </os>
22 </domainCapabilities>
00 <domain>
1 <os>
1 <os firmware="efi">
22 <type arch="x86_64" machine="q35">hvm</type>
33 <boot dev="cdrom"/>
44 <boot dev="network"/>
0 # Makefile.in generated by automake 1.15.1 from Makefile.am.
0 # Makefile.in generated by automake 1.16.1 from Makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
9090 subdir = vapi
9191 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
9292 am__aclocal_m4_deps = $(top_srcdir)/m4/glibtests.m4 \
93 $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
94 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
95 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
96 $(top_srcdir)/m4/manywarnings.m4 \
93 $(top_srcdir)/m4/gtk-doc.m4 $(top_srcdir)/m4/introspection.m4 \
94 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
95 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
96 $(top_srcdir)/m4/lt~obsolete.m4 \
97 $(top_srcdir)/m4/manywarnings.m4 $(top_srcdir)/m4/pkg.m4 \
9798 $(top_srcdir)/m4/virt-compile-warnings.m4 \
98 $(top_srcdir)/m4/virt-gettext.m4 $(top_srcdir)/m4/warnings.m4 \
99 $(top_srcdir)/m4/virt-nls.m4 $(top_srcdir)/m4/warnings.m4 \
99100 $(top_srcdir)/configure.ac
100101 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
101102 $(ACLOCAL_M4)
156157 am__DIST_COMMON = $(srcdir)/Makefile.in
157158 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
158159 ACLOCAL = @ACLOCAL@
159 ALL_LINGUAS = @ALL_LINGUAS@
160160 AMTAR = @AMTAR@
161161 AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
162162 AR = @AR@
187187 EGREP = @EGREP@
188188 EXEEXT = @EXEEXT@
189189 FGREP = @FGREP@
190 GETTEXT_PACKAGE = @GETTEXT_PACKAGE@
191190 GIO2_CFLAGS = @GIO2_CFLAGS@
192191 GIO2_LIBS = @GIO2_LIBS@
193192 GLIB2_CFLAGS = @GLIB2_CFLAGS@
194193 GLIB2_LIBS = @GLIB2_LIBS@
195194 GLIB2_REQUIRED = @GLIB2_REQUIRED@
195 GLIB2_VERSION_SYMBOL = @GLIB2_VERSION_SYMBOL@
196196 GLIB_MKENUMS = @GLIB_MKENUMS@
197 GMSGFMT = @GMSGFMT@
198197 GOBJECT2_CFLAGS = @GOBJECT2_CFLAGS@
199198 GOBJECT2_LIBS = @GOBJECT2_LIBS@
200199 GREP = @GREP@
212211 INSTALL_PROGRAM = @INSTALL_PROGRAM@
213212 INSTALL_SCRIPT = @INSTALL_SCRIPT@
214213 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
215 INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
216 INTLTOOL_MERGE = @INTLTOOL_MERGE@
217 INTLTOOL_PERL = @INTLTOOL_PERL@
218 INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
219 INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@
220 INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@
221 INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@
222 INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@
223214 INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@
224215 INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@
225216 INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@
277268 SET_MAKE = @SET_MAKE@
278269 SHELL = @SHELL@
279270 STRIP = @STRIP@
280 USE_NLS = @USE_NLS@
281271 VAPIGEN = @VAPIGEN@
282272 VERSION = @VERSION@
283273 WARN_CFLAGS = @WARN_CFLAGS@
317307 install_sh = @install_sh@
318308 installed_test_metadir = @installed_test_metadir@
319309 installed_testdir = @installed_testdir@
320 intltool__v_merge_options_ = @intltool__v_merge_options_@
321 intltool__v_merge_options_0 = @intltool__v_merge_options_0@
322310 libdir = @libdir@
323311 libexecdir = @libexecdir@
324312 localedir = @localedir@
374362 *config.status*) \
375363 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
376364 *) \
377 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
378 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
365 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
366 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
379367 esac;
380368
381369 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
420408 cscope cscopelist:
421409
422410
423 distdir: $(DISTFILES)
411 distdir: $(BUILT_SOURCES)
412 $(MAKE) $(AM_MAKEFLAGS) distdir-am
413
414 distdir-am: $(DISTFILES)
424415 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
425416 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
426417 list='$(DISTFILES)'; \