New upstream version 7.0
Guido Günther
5 years ago
14 | 14 | Christophe Fergeau <cfergeau@redhat.com> |
15 | 15 | Christophe de Dinechin <cdupontd@redhat.com> |
16 | 16 | Daniel P. Berrange <berrange@redhat.com> |
17 | Daniel P. Berrangé <berrange@redhat.com> | |
17 | 18 | Dave Allan <dallan@redhat.com> |
18 | 19 | Doug Goldstein <cardoe@cardoe.com> |
19 | 20 | Eduardo Lima (Etrunko) <etrunko@redhat.com> |
0 | 2018-07-27 Daniel P. Berrangé <berrange@redhat.com> | |
1 | ||
2 | Add NEWS for 7.0 release | |
3 | ||
4 | Bump min spice to 0.35 and address deprecation warnings | |
5 | ||
6 | Disable -Wcast-function-type warning | |
7 | Most glib function casts trigger this | |
8 | ||
9 | 2018-06-04 Victor Toso <me@victortoso.com> | |
10 | ||
11 | remote-viewer-connect: centralize window | |
12 | Instead of top-left corner. | |
13 | ||
14 | Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1508274 | |
15 | ||
16 | Acked-by: Eduardo Lima (Etrunko) <etrunko@redhat.com> | |
17 | ||
18 | 2018-05-02 Christophe Fergeau <cfergeau@redhat.com> | |
19 | ||
20 | win32: Look up translations relative to installation directory | |
21 | On Windows, we can't use bindtextdomain(GETTEXT_PACKAGE, LOCALE_DIR); as | |
22 | LOCALE_DIR is a compile-time constant, while the location of the | |
23 | translations will be dependant on where the user installs virt-viewer. | |
24 | This results in an untranslated virt-viewer UI on Windows. This commit | |
25 | calls bindtextdomain() with a directory which is relative to the | |
26 | installation path so that translation are properly found. | |
27 | This is similar to what spice-gtk is doing: | |
28 | https://cgit.freedesktop.org/spice/spice-gtk/tree/src/spice-glib-main.c | |
29 | ||
30 | 2017-12-04 Daniel P. Berrange <berrange@redhat.com> | |
31 | ||
32 | Refresh po files from zanata | |
33 | ||
34 | 2017-11-23 Eduardo Lima (Etrunko) <etrunko@redhat.com> | |
35 | ||
36 | Fixes to spec file | |
37 | - Use macros for paths instead of absolute paths. | |
38 | - Remove dangling %{gtk_arg} macro in configure. | |
39 | - Fix scope of enable_autotools macro to avoid warning during build. | |
40 | warning: Macro %enable_autotools defined but not used within scope | |
41 | ||
42 | 2017-11-22 Eduardo Lima (Etrunko) <etrunko@redhat.com> | |
43 | ||
44 | doc: Adjust reference to spice-gtk man page for remote-viewer | |
45 | Similar to last commit, as noticed by reporter in bugzilla: | |
46 | ||
47 | https://bugzilla.redhat.com/show_bug.cgi?id=1477966 | |
48 | ||
49 | Man page should reference spice-client, not spice-gtk. | |
50 | ||
51 | Acked-by: Victor Toso <victortoso@redhat.com> | |
52 | ||
53 | 2017-11-17 Christophe Fergeau <cfergeau@redhat.com> | |
54 | ||
55 | doc: Adjust reference to spice-gtk man page | |
56 | The man page spice-gtk ships is named "spice-client", not "spice-gtk" | |
57 | ||
58 | Reviewed-by: Daniel P. Berrange <berrange@redhat.com> | |
59 | ||
60 | https://bugzilla.redhat.com/show_bug.cgi?id=1477966 | |
61 | ||
62 | 2017-11-17 Marc-André Lureau <marcandre.lureau@redhat.com> | |
63 | ||
64 | virt-viewer.spec.in: fix build after spice-xpi-client removal | |
65 | This fixes commit 140cb84c2538bf0eab7dea2035dfecc4db74c784, where we | |
66 | removed the spice-xpi-client-remote-viewer. | |
67 | ||
68 | Reviewed-by: Daniel P. Berrange <berrange@redhat.com> | |
69 | ||
70 | 2017-11-16 Marc-André Lureau <marcandre.lureau@redhat.com> | |
71 | ||
72 | win32: remove debug-helper.exe | |
73 | This helper was useful to debug spice controller & activex plugin. Now | |
74 | that the controller is gone, it is no longer needed. | |
75 | ||
76 | Reviewed-by: Victor Toso <victortoso@redhat.com> | |
77 | ||
78 | remote-viewer: remove --spice-controller | |
79 | spice controller interface is being removed from spice-gtk. | |
80 | ||
81 | Reviewed-by: Victor Toso <victortoso@redhat.com> | |
82 | ||
83 | remote-viewer: learn '-' as URI for standard input connection file | |
84 | Some users want the ability to set connection details without writing | |
85 | to a file or passing command line arguments. | |
86 | ||
87 | Learn to read the connection file from standard input for such use | |
88 | case. | |
89 | ||
90 | This allows a parent process to set the connection details without | |
91 | intermediary file. | |
92 | ||
93 | Reviewed-by: Victor Toso <victortoso@redhat.com> | |
94 | ||
95 | 2017-11-14 Eduardo Lima (Etrunko) <etrunko@redhat.com> | |
96 | ||
97 | remote-viewer: Pass guri to remote_viewer_session_connected | |
98 | When connecting to a VM via oVirt instance, the original uri can not be | |
99 | retrieved using virt_viewer_session_get_uri(). Consequently, it was | |
100 | never saved, even though the connection succeeds and the actual callback | |
101 | for "session-connected" signal, which saves the URI, is invoked. | |
102 | ||
103 | To solve this problem, we always pass a copy of the guri as user-data | |
104 | parameter for the callback, and if the call to | |
105 | virt_viewer_session_get_uri() returns NULL, the parameter is used | |
106 | instead. | |
107 | ||
108 | Resolves: https://bugzilla.redhat.com/1459792 | |
109 | ||
110 | Acked-by: Victor Toso <victortoso@redhat.com> | |
111 | ||
112 | 2017-10-06 Eduardo Lima (Etrunko) <etrunko@redhat.com> | |
113 | ||
114 | foreign-menu: Check if storage domain is active for data center | |
115 | This last patch of the series is where we actually check if the storage | |
116 | domain is active in the data center the VM is associated with. It makes | |
117 | use of g_strv_contains(), which is available only in glib version 2.44. | |
118 | Compatibility code has been added if building against older versions | |
119 | than required. | |
120 | ||
121 | Related: https://bugzilla.redhat.com/show_bug.cgi?id=1427467 | |
122 | https://bugzilla.redhat.com/show_bug.cgi?id=1428401 | |
123 | ||
124 | ovirt-foreign-menu: Fetch host, cluster and data center information | |
125 | It is possible that the data center the VM is associated with has more | |
126 | than one storage domain associated with it as well, when only one is | |
127 | active while the others are not. | |
128 | ||
129 | The current ovir-foreign-menu code does not take it into consideration, | |
130 | thus the ISO dialog may show invalid results with that scenario. We fix | |
131 | this problem by making use of new functions in libgovirt, adding support | |
132 | or hosts, clusters and data centers. | |
133 | ||
134 | Related: https://bugzilla.redhat.com/show_bug.cgi?id=1427467 | |
135 | https://bugzilla.redhat.com/show_bug.cgi?id=1428401 | |
136 | ||
137 | foreign-menu: Use query for fetching virtual machines | |
138 | This can save us some bandwidth, as we are searching for the specific | |
139 | virtual machine instead of retrieving the collection with all VMs, and | |
140 | then iterating over the results after the transfer finishes. | |
141 | ||
142 | configure: check for new functions in libgovirt | |
143 | These functions will be used in ovirt-foreign-menu code and guarded | |
144 | by #ifdef blocks so that we can keep compatibility with older libgovirt | |
145 | versions. | |
146 | ||
147 | Related: https://bugzilla.redhat.com/show_bug.cgi?id=1427467 | |
148 | https://bugzilla.redhat.com/show_bug.cgi?id=1428401 | |
149 | ||
150 | 2017-10-06 Marc-André Lureau <marcandre.lureau@redhat.com> | |
151 | ||
152 | remote-viewer: factor our remote_viewer_initial_connect() | |
153 | ||
154 | session: remove virt_viewer_session_new() declaration | |
155 | The function was removed in commit | |
156 | 05333f0e93fb988c2fd9302e67671490941aedb0. | |
157 | ||
158 | 2017-09-14 Guido Günther <agx@sigxcpu.org> | |
159 | ||
160 | Make it clear that only running VMs are listed | |
161 | this might otherwise be confusing. | |
162 | ||
163 | Reference: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=873597#25 | |
164 | ||
0 | 165 | 2017-08-15 Daniel P. Berrange <berrange@redhat.com> |
166 | ||
167 | Post release version bump to 7.0 | |
1 | 168 | |
2 | 169 | Add NEWS for 6.0 release |
3 | 170 |
0 | # Makefile.in generated by automake 1.15 from Makefile.am. | |
0 | # Makefile.in generated by automake 1.15.1 from Makefile.am. | |
1 | 1 | # @configure_input@ |
2 | 2 | |
3 | # Copyright (C) 1994-2014 Free Software Foundation, Inc. | |
3 | # Copyright (C) 1994-2017 Free Software Foundation, Inc. | |
4 | 4 | |
5 | 5 | # This Makefile.in is free software; the Free Software Foundation |
6 | 6 | # gives unlimited permission to copy and/or distribute it, |
88 | 88 | host_triplet = @host@ |
89 | 89 | subdir = . |
90 | 90 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
91 | am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \ | |
92 | $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ | |
93 | $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ | |
94 | $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac | |
91 | am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.m4 \ | |
92 | $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ | |
93 | $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ | |
94 | $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/acinclude.m4 \ | |
95 | $(top_srcdir)/configure.ac | |
95 | 96 | am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ |
96 | 97 | $(ACLOCAL_M4) |
97 | 98 | DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \ |
324 | 325 | SED = @SED@ |
325 | 326 | SET_MAKE = @SET_MAKE@ |
326 | 327 | SHELL = @SHELL@ |
327 | SPICE_CONTROLLER_CFLAGS = @SPICE_CONTROLLER_CFLAGS@ | |
328 | SPICE_CONTROLLER_LIBS = @SPICE_CONTROLLER_LIBS@ | |
329 | 328 | SPICE_GTK_CFLAGS = @SPICE_GTK_CFLAGS@ |
330 | 329 | SPICE_GTK_LIBS = @SPICE_GTK_LIBS@ |
331 | 330 | SPICE_GTK_REQUIRED = @SPICE_GTK_REQUIRED@ |
0 | 0 | Virt Viewer News |
1 | 1 | ================ |
2 | ||
3 | 7.0: Jul 27, 2018 | |
4 | ----------------- | |
5 | ||
6 | - Require spice-gtk >= 0.35 | |
7 | - Clarify error message when no running VM is found | |
8 | - Improve check for libgovirt requirements | |
9 | - Support "-" as a URI for input connection file | |
10 | - Remove support for spice controller interface | |
11 | - Misc man page fixes | |
12 | - Lookup win32 translations relative to install dir | |
13 | - Position connect window in center not top-left | |
14 | - Misc fixes for ovirt foreign menu support | |
2 | 15 | |
3 | 16 | 6.0: Aug 15, 2017 |
4 | 17 | ----------------- |
14 | 14 | |
15 | 15 | https://wiki.gnome.org/Projects/gtk-vnc |
16 | 16 | |
17 | Virt Viewer uses the SPICE-GTK (>= 0.33) widget to provide a | |
17 | Virt Viewer uses the SPICE-GTK (>= 0.35) widget to provide a | |
18 | 18 | display of the SPICE protocol, which is available from: |
19 | 19 | |
20 | 20 | https://www.spice-space.org/download.html |
34 | 34 | try_compiler_flags="$try_compiler_flags -Wextra -Wshadow -Wcast-align -Wwrite-strings -Waggregate-return" |
35 | 35 | # Removed -Wstrict-prototypes to avoid GTK bug |
36 | 36 | try_compiler_flags="$try_compiler_flags -Winline -Wredundant-decls -Wdeprecated-declarations -Wno-sign-compare" |
37 | # Remove as glib function casts hit | |
38 | try_compiler_flags="$try_compiler_flags -Wno-cast-function-type" | |
37 | 39 | if test "$enable_compile_warnings" = "error" ; then |
38 | 40 | try_compiler_flags="$try_compiler_flags -Werror" |
39 | 41 | fi |
0 | # generated automatically by aclocal 1.15 -*- Autoconf -*- | |
1 | ||
2 | # Copyright (C) 1996-2014 Free Software Foundation, Inc. | |
0 | # generated automatically by aclocal 1.15.1 -*- Autoconf -*- | |
1 | ||
2 | # Copyright (C) 1996-2017 Free Software Foundation, Inc. | |
3 | 3 | |
4 | 4 | # This file is free software; the Free Software Foundation |
5 | 5 | # gives unlimited permission to copy and/or distribute it, |
46 | 46 | # |
47 | 47 | # Modified to require ngettext |
48 | 48 | # Matthias Clasen <mclasen@redhat.com> 08/06/2004 |
49 | # | |
49 | ||
50 | # Increment this whenever this file is changed. | |
51 | #serial 1 | |
52 | ||
50 | 53 | # We need this here as well, since someone might use autoconf-2.5x |
51 | 54 | # to configure GLib then an older version to configure a package |
52 | 55 | # using AM_GLIB_GNU_GETTEXT |
503 | 506 | fi]) |
504 | 507 | |
505 | 508 | |
506 | ||
507 | dnl IT_PROG_INTLTOOL([MINIMUM-VERSION], [no-xml]) | |
508 | # serial 42 IT_PROG_INTLTOOL | |
509 | AC_DEFUN([IT_PROG_INTLTOOL], [ | |
510 | AC_PREREQ([2.50])dnl | |
511 | AC_REQUIRE([AM_NLS])dnl | |
512 | ||
513 | case "$am__api_version" in | |
514 | 1.[01234]) | |
515 | AC_MSG_ERROR([Automake 1.5 or newer is required to use intltool]) | |
516 | ;; | |
517 | *) | |
518 | ;; | |
519 | esac | |
520 | ||
521 | INTLTOOL_REQUIRED_VERSION_AS_INT=`echo $1 | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'` | |
522 | INTLTOOL_APPLIED_VERSION=`intltool-update --version | head -1 | cut -d" " -f3` | |
523 | INTLTOOL_APPLIED_VERSION_AS_INT=`echo $INTLTOOL_APPLIED_VERSION | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'` | |
524 | if test -n "$1"; then | |
525 | AC_MSG_CHECKING([for intltool >= $1]) | |
526 | AC_MSG_RESULT([$INTLTOOL_APPLIED_VERSION found]) | |
527 | test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge "$INTLTOOL_REQUIRED_VERSION_AS_INT" || | |
528 | AC_MSG_ERROR([Your intltool is too old. You need intltool $1 or later.]) | |
529 | fi | |
530 | ||
531 | AC_PATH_PROG(INTLTOOL_UPDATE, [intltool-update]) | |
532 | AC_PATH_PROG(INTLTOOL_MERGE, [intltool-merge]) | |
533 | AC_PATH_PROG(INTLTOOL_EXTRACT, [intltool-extract]) | |
534 | if test -z "$INTLTOOL_UPDATE" -o -z "$INTLTOOL_MERGE" -o -z "$INTLTOOL_EXTRACT"; then | |
535 | AC_MSG_ERROR([The intltool scripts were not found. Please install intltool.]) | |
536 | fi | |
537 | ||
538 | if test -z "$AM_DEFAULT_VERBOSITY"; then | |
539 | AM_DEFAULT_VERBOSITY=1 | |
540 | fi | |
541 | AC_SUBST([AM_DEFAULT_VERBOSITY]) | |
542 | ||
543 | INTLTOOL_V_MERGE='$(INTLTOOL__v_MERGE_$(V))' | |
544 | INTLTOOL__v_MERGE_='$(INTLTOOL__v_MERGE_$(AM_DEFAULT_VERBOSITY))' | |
545 | INTLTOOL__v_MERGE_0='@echo " ITMRG " [$]@;' | |
546 | AC_SUBST(INTLTOOL_V_MERGE) | |
547 | AC_SUBST(INTLTOOL__v_MERGE_) | |
548 | AC_SUBST(INTLTOOL__v_MERGE_0) | |
549 | ||
550 | INTLTOOL_V_MERGE_OPTIONS='$(intltool__v_merge_options_$(V))' | |
551 | intltool__v_merge_options_='$(intltool__v_merge_options_$(AM_DEFAULT_VERBOSITY))' | |
552 | intltool__v_merge_options_0='-q' | |
553 | AC_SUBST(INTLTOOL_V_MERGE_OPTIONS) | |
554 | AC_SUBST(intltool__v_merge_options_) | |
555 | AC_SUBST(intltool__v_merge_options_0) | |
556 | ||
557 | 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 $< [$]@' | |
558 | 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 $< [$]@' | |
559 | 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 $< [$]@' | |
560 | 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 $< [$]@' | |
561 | 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 $< [$]@' | |
562 | 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 $< [$]@' | |
563 | 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 $< [$]@' | |
564 | 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 $< [$]@' | |
565 | 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 $< [$]@' | |
566 | 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 $< [$]@' | |
567 | 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 $< [$]@' | |
568 | if test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge 5000; then | |
569 | 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 $< [$]@' | |
570 | else | |
571 | 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' | |
572 | fi | |
573 | 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 $< [$]@' | |
574 | 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 $< [$]@' | |
575 | 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 $< [$]@' | |
576 | 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 $< [$]@' | |
577 | 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 $< [$]@' | |
578 | 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 $< [$]@' | |
579 | 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 $< [$]@' | |
580 | ||
581 | _IT_SUBST(INTLTOOL_DESKTOP_RULE) | |
582 | _IT_SUBST(INTLTOOL_DIRECTORY_RULE) | |
583 | _IT_SUBST(INTLTOOL_KEYS_RULE) | |
584 | _IT_SUBST(INTLTOOL_PROP_RULE) | |
585 | _IT_SUBST(INTLTOOL_OAF_RULE) | |
586 | _IT_SUBST(INTLTOOL_PONG_RULE) | |
587 | _IT_SUBST(INTLTOOL_SERVER_RULE) | |
588 | _IT_SUBST(INTLTOOL_SHEET_RULE) | |
589 | _IT_SUBST(INTLTOOL_SOUNDLIST_RULE) | |
590 | _IT_SUBST(INTLTOOL_UI_RULE) | |
591 | _IT_SUBST(INTLTOOL_XAM_RULE) | |
592 | _IT_SUBST(INTLTOOL_KBD_RULE) | |
593 | _IT_SUBST(INTLTOOL_XML_RULE) | |
594 | _IT_SUBST(INTLTOOL_XML_NOMERGE_RULE) | |
595 | _IT_SUBST(INTLTOOL_CAVES_RULE) | |
596 | _IT_SUBST(INTLTOOL_SCHEMAS_RULE) | |
597 | _IT_SUBST(INTLTOOL_THEME_RULE) | |
598 | _IT_SUBST(INTLTOOL_SERVICE_RULE) | |
599 | _IT_SUBST(INTLTOOL_POLICY_RULE) | |
600 | ||
601 | # Check the gettext tools to make sure they are GNU | |
602 | AC_PATH_PROG(XGETTEXT, xgettext) | |
603 | AC_PATH_PROG(MSGMERGE, msgmerge) | |
604 | AC_PATH_PROG(MSGFMT, msgfmt) | |
605 | AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT) | |
606 | if test -z "$XGETTEXT" -o -z "$MSGMERGE" -o -z "$MSGFMT"; then | |
607 | AC_MSG_ERROR([GNU gettext tools not found; required for intltool]) | |
608 | fi | |
609 | xgversion="`$XGETTEXT --version|grep '(GNU ' 2> /dev/null`" | |
610 | mmversion="`$MSGMERGE --version|grep '(GNU ' 2> /dev/null`" | |
611 | mfversion="`$MSGFMT --version|grep '(GNU ' 2> /dev/null`" | |
612 | if test -z "$xgversion" -o -z "$mmversion" -o -z "$mfversion"; then | |
613 | AC_MSG_ERROR([GNU gettext tools not found; required for intltool]) | |
614 | fi | |
615 | ||
616 | AC_PATH_PROG(INTLTOOL_PERL, perl) | |
617 | if test -z "$INTLTOOL_PERL"; then | |
618 | AC_MSG_ERROR([perl not found]) | |
619 | fi | |
620 | AC_MSG_CHECKING([for perl >= 5.8.1]) | |
621 | $INTLTOOL_PERL -e "use 5.8.1;" > /dev/null 2>&1 | |
622 | if test $? -ne 0; then | |
623 | AC_MSG_ERROR([perl 5.8.1 is required for intltool]) | |
624 | else | |
625 | IT_PERL_VERSION=`$INTLTOOL_PERL -e "printf '%vd', $^V"` | |
626 | AC_MSG_RESULT([$IT_PERL_VERSION]) | |
627 | fi | |
628 | if test "x$2" != "xno-xml"; then | |
629 | AC_MSG_CHECKING([for XML::Parser]) | |
630 | if `$INTLTOOL_PERL -e "require XML::Parser" 2>/dev/null`; then | |
631 | AC_MSG_RESULT([ok]) | |
632 | else | |
633 | AC_MSG_ERROR([XML::Parser perl module is required for intltool]) | |
634 | fi | |
635 | fi | |
636 | ||
637 | # Substitute ALL_LINGUAS so we can use it in po/Makefile | |
638 | AC_SUBST(ALL_LINGUAS) | |
639 | ||
640 | IT_PO_SUBDIR([po]) | |
641 | ||
642 | ]) | |
643 | ||
644 | ||
645 | # IT_PO_SUBDIR(DIRNAME) | |
646 | # --------------------- | |
647 | # All po subdirs have to be declared with this macro; the subdir "po" is | |
648 | # declared by IT_PROG_INTLTOOL. | |
649 | # | |
650 | AC_DEFUN([IT_PO_SUBDIR], | |
651 | [AC_PREREQ([2.53])dnl We use ac_top_srcdir inside AC_CONFIG_COMMANDS. | |
652 | dnl | |
653 | dnl The following CONFIG_COMMANDS should be executed at the very end | |
654 | dnl of config.status. | |
655 | AC_CONFIG_COMMANDS_PRE([ | |
656 | AC_CONFIG_COMMANDS([$1/stamp-it], [ | |
657 | if [ ! grep "^# INTLTOOL_MAKEFILE$" "$1/Makefile.in" > /dev/null ]; then | |
658 | AC_MSG_ERROR([$1/Makefile.in.in was not created by intltoolize.]) | |
659 | fi | |
660 | rm -f "$1/stamp-it" "$1/stamp-it.tmp" "$1/POTFILES" "$1/Makefile.tmp" | |
661 | >"$1/stamp-it.tmp" | |
662 | [sed '/^#/d | |
663 | s/^[[].*] *// | |
664 | /^[ ]*$/d | |
665 | '"s|^| $ac_top_srcdir/|" \ | |
666 | "$srcdir/$1/POTFILES.in" | sed '$!s/$/ \\/' >"$1/POTFILES" | |
667 | ] | |
668 | [sed '/^POTFILES =/,/[^\\]$/ { | |
669 | /^POTFILES =/!d | |
670 | r $1/POTFILES | |
671 | } | |
672 | ' "$1/Makefile.in" >"$1/Makefile"] | |
673 | rm -f "$1/Makefile.tmp" | |
674 | mv "$1/stamp-it.tmp" "$1/stamp-it" | |
675 | ]) | |
676 | ])dnl | |
677 | ]) | |
678 | ||
679 | # _IT_SUBST(VARIABLE) | |
680 | # ------------------- | |
681 | # Abstract macro to do either _AM_SUBST_NOTMAKE or AC_SUBST | |
682 | # | |
683 | AC_DEFUN([_IT_SUBST], | |
684 | [ | |
685 | AC_SUBST([$1]) | |
686 | m4_ifdef([_AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE([$1])]) | |
687 | ] | |
688 | ) | |
689 | ||
690 | # deprecated macros | |
691 | AU_ALIAS([AC_PROG_INTLTOOL], [IT_PROG_INTLTOOL]) | |
692 | # A hint is needed for aclocal from Automake <= 1.9.4: | |
693 | # AC_DEFUN([AC_PROG_INTLTOOL], ...) | |
694 | ||
695 | ||
696 | 509 | # nls.m4 serial 5 (gettext-0.18) |
697 | 510 | dnl Copyright (C) 1995-2003, 2005-2006, 2008-2014, 2016 Free Software |
698 | 511 | dnl Foundation, Inc. |
1070 | 883 | [AC_DEFINE([HAVE_][$1], 1, [Enable ]m4_tolower([$1])[ support])]) |
1071 | 884 | ])dnl PKG_HAVE_DEFINE_WITH_MODULES |
1072 | 885 | |
1073 | # Copyright (C) 2002-2014 Free Software Foundation, Inc. | |
886 | # Copyright (C) 2002-2017 Free Software Foundation, Inc. | |
1074 | 887 | # |
1075 | 888 | # This file is free software; the Free Software Foundation |
1076 | 889 | # gives unlimited permission to copy and/or distribute it, |
1085 | 898 | [am__api_version='1.15' |
1086 | 899 | dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to |
1087 | 900 | dnl require some minimum version. Point them to the right macro. |
1088 | m4_if([$1], [1.15], [], | |
901 | m4_if([$1], [1.15.1], [], | |
1089 | 902 | [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl |
1090 | 903 | ]) |
1091 | 904 | |
1101 | 914 | # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. |
1102 | 915 | # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. |
1103 | 916 | AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], |
1104 | [AM_AUTOMAKE_VERSION([1.15])dnl | |
917 | [AM_AUTOMAKE_VERSION([1.15.1])dnl | |
1105 | 918 | m4_ifndef([AC_AUTOCONF_VERSION], |
1106 | 919 | [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl |
1107 | 920 | _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) |
1108 | 921 | |
1109 | 922 | # AM_AUX_DIR_EXPAND -*- Autoconf -*- |
1110 | 923 | |
1111 | # Copyright (C) 2001-2014 Free Software Foundation, Inc. | |
924 | # Copyright (C) 2001-2017 Free Software Foundation, Inc. | |
1112 | 925 | # |
1113 | 926 | # This file is free software; the Free Software Foundation |
1114 | 927 | # gives unlimited permission to copy and/or distribute it, |
1160 | 973 | |
1161 | 974 | # AM_CONDITIONAL -*- Autoconf -*- |
1162 | 975 | |
1163 | # Copyright (C) 1997-2014 Free Software Foundation, Inc. | |
976 | # Copyright (C) 1997-2017 Free Software Foundation, Inc. | |
1164 | 977 | # |
1165 | 978 | # This file is free software; the Free Software Foundation |
1166 | 979 | # gives unlimited permission to copy and/or distribute it, |
1191 | 1004 | Usually this means the macro was only invoked conditionally.]]) |
1192 | 1005 | fi])]) |
1193 | 1006 | |
1194 | # Copyright (C) 1999-2014 Free Software Foundation, Inc. | |
1007 | # Copyright (C) 1999-2017 Free Software Foundation, Inc. | |
1195 | 1008 | # |
1196 | 1009 | # This file is free software; the Free Software Foundation |
1197 | 1010 | # gives unlimited permission to copy and/or distribute it, |
1382 | 1195 | |
1383 | 1196 | # Generate code to set up dependency tracking. -*- Autoconf -*- |
1384 | 1197 | |
1385 | # Copyright (C) 1999-2014 Free Software Foundation, Inc. | |
1198 | # Copyright (C) 1999-2017 Free Software Foundation, Inc. | |
1386 | 1199 | # |
1387 | 1200 | # This file is free software; the Free Software Foundation |
1388 | 1201 | # gives unlimited permission to copy and/or distribute it, |
1458 | 1271 | |
1459 | 1272 | # Do all the work for Automake. -*- Autoconf -*- |
1460 | 1273 | |
1461 | # Copyright (C) 1996-2014 Free Software Foundation, Inc. | |
1274 | # Copyright (C) 1996-2017 Free Software Foundation, Inc. | |
1462 | 1275 | # |
1463 | 1276 | # This file is free software; the Free Software Foundation |
1464 | 1277 | # gives unlimited permission to copy and/or distribute it, |
1655 | 1468 | done |
1656 | 1469 | echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) |
1657 | 1470 | |
1658 | # Copyright (C) 2001-2014 Free Software Foundation, Inc. | |
1471 | # Copyright (C) 2001-2017 Free Software Foundation, Inc. | |
1659 | 1472 | # |
1660 | 1473 | # This file is free software; the Free Software Foundation |
1661 | 1474 | # gives unlimited permission to copy and/or distribute it, |
1676 | 1489 | fi |
1677 | 1490 | AC_SUBST([install_sh])]) |
1678 | 1491 | |
1679 | # Copyright (C) 2003-2014 Free Software Foundation, Inc. | |
1492 | # Copyright (C) 2003-2017 Free Software Foundation, Inc. | |
1680 | 1493 | # |
1681 | 1494 | # This file is free software; the Free Software Foundation |
1682 | 1495 | # gives unlimited permission to copy and/or distribute it, |
1697 | 1510 | |
1698 | 1511 | # Check to see how 'make' treats includes. -*- Autoconf -*- |
1699 | 1512 | |
1700 | # Copyright (C) 2001-2014 Free Software Foundation, Inc. | |
1513 | # Copyright (C) 2001-2017 Free Software Foundation, Inc. | |
1701 | 1514 | # |
1702 | 1515 | # This file is free software; the Free Software Foundation |
1703 | 1516 | # gives unlimited permission to copy and/or distribute it, |
1747 | 1560 | |
1748 | 1561 | # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- |
1749 | 1562 | |
1750 | # Copyright (C) 1997-2014 Free Software Foundation, Inc. | |
1563 | # Copyright (C) 1997-2017 Free Software Foundation, Inc. | |
1751 | 1564 | # |
1752 | 1565 | # This file is free software; the Free Software Foundation |
1753 | 1566 | # gives unlimited permission to copy and/or distribute it, |
1786 | 1599 | |
1787 | 1600 | # Helper functions for option handling. -*- Autoconf -*- |
1788 | 1601 | |
1789 | # Copyright (C) 2001-2014 Free Software Foundation, Inc. | |
1602 | # Copyright (C) 2001-2017 Free Software Foundation, Inc. | |
1790 | 1603 | # |
1791 | 1604 | # This file is free software; the Free Software Foundation |
1792 | 1605 | # gives unlimited permission to copy and/or distribute it, |
1815 | 1628 | AC_DEFUN([_AM_IF_OPTION], |
1816 | 1629 | [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) |
1817 | 1630 | |
1818 | # Copyright (C) 1999-2014 Free Software Foundation, Inc. | |
1631 | # Copyright (C) 1999-2017 Free Software Foundation, Inc. | |
1819 | 1632 | # |
1820 | 1633 | # This file is free software; the Free Software Foundation |
1821 | 1634 | # gives unlimited permission to copy and/or distribute it, |
1862 | 1675 | # For backward compatibility. |
1863 | 1676 | AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])]) |
1864 | 1677 | |
1865 | # Copyright (C) 2001-2014 Free Software Foundation, Inc. | |
1678 | # Copyright (C) 2001-2017 Free Software Foundation, Inc. | |
1866 | 1679 | # |
1867 | 1680 | # This file is free software; the Free Software Foundation |
1868 | 1681 | # gives unlimited permission to copy and/or distribute it, |
1881 | 1694 | |
1882 | 1695 | # Check to make sure that the build environment is sane. -*- Autoconf -*- |
1883 | 1696 | |
1884 | # Copyright (C) 1996-2014 Free Software Foundation, Inc. | |
1697 | # Copyright (C) 1996-2017 Free Software Foundation, Inc. | |
1885 | 1698 | # |
1886 | 1699 | # This file is free software; the Free Software Foundation |
1887 | 1700 | # gives unlimited permission to copy and/or distribute it, |
1962 | 1775 | rm -f conftest.file |
1963 | 1776 | ]) |
1964 | 1777 | |
1965 | # Copyright (C) 2009-2014 Free Software Foundation, Inc. | |
1778 | # Copyright (C) 2009-2017 Free Software Foundation, Inc. | |
1966 | 1779 | # |
1967 | 1780 | # This file is free software; the Free Software Foundation |
1968 | 1781 | # gives unlimited permission to copy and/or distribute it, |
2022 | 1835 | _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl |
2023 | 1836 | ]) |
2024 | 1837 | |
2025 | # Copyright (C) 2001-2014 Free Software Foundation, Inc. | |
1838 | # Copyright (C) 2001-2017 Free Software Foundation, Inc. | |
2026 | 1839 | # |
2027 | 1840 | # This file is free software; the Free Software Foundation |
2028 | 1841 | # gives unlimited permission to copy and/or distribute it, |
2050 | 1863 | INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" |
2051 | 1864 | AC_SUBST([INSTALL_STRIP_PROGRAM])]) |
2052 | 1865 | |
2053 | # Copyright (C) 2006-2014 Free Software Foundation, Inc. | |
1866 | # Copyright (C) 2006-2017 Free Software Foundation, Inc. | |
2054 | 1867 | # |
2055 | 1868 | # This file is free software; the Free Software Foundation |
2056 | 1869 | # gives unlimited permission to copy and/or distribute it, |
2069 | 1882 | |
2070 | 1883 | # Check how to create a tarball. -*- Autoconf -*- |
2071 | 1884 | |
2072 | # Copyright (C) 2004-2014 Free Software Foundation, Inc. | |
1885 | # Copyright (C) 2004-2017 Free Software Foundation, Inc. | |
2073 | 1886 | # |
2074 | 1887 | # This file is free software; the Free Software Foundation |
2075 | 1888 | # gives unlimited permission to copy and/or distribute it, |
2200 | 2013 | AC_SUBST([am__untar]) |
2201 | 2014 | ]) # _AM_PROG_TAR |
2202 | 2015 | |
2016 | m4_include([m4/intltool.m4]) | |
2203 | 2017 | m4_include([m4/libtool.m4]) |
2204 | 2018 | m4_include([m4/ltoptions.m4]) |
2205 | 2019 | m4_include([m4/ltsugar.m4]) |
0 | #! /bin/sh | |
0 | #!/bin/sh | |
1 | 1 | # Wrapper for compilers which do not understand '-c -o'. |
2 | 2 | |
3 | scriptversion=2012-10-14.11; # UTC | |
4 | ||
5 | # Copyright (C) 1999-2014 Free Software Foundation, Inc. | |
3 | scriptversion=2016-01-11.22; # UTC | |
4 | ||
5 | # Copyright (C) 1999-2017 Free Software Foundation, Inc. | |
6 | 6 | # Written by Tom Tromey <tromey@cygnus.com>. |
7 | 7 | # |
8 | 8 | # This program is free software; you can redistribute it and/or modify |
254 | 254 | echo "compile $scriptversion" |
255 | 255 | exit $? |
256 | 256 | ;; |
257 | cl | *[/\\]cl | cl.exe | *[/\\]cl.exe ) | |
257 | cl | *[/\\]cl | cl.exe | *[/\\]cl.exe | \ | |
258 | icl | *[/\\]icl | icl.exe | *[/\\]icl.exe ) | |
258 | 259 | func_cl_wrapper "$@" # Doesn't return... |
259 | 260 | ;; |
260 | 261 | esac |
341 | 342 | # eval: (add-hook 'write-file-hooks 'time-stamp) |
342 | 343 | # time-stamp-start: "scriptversion=" |
343 | 344 | # time-stamp-format: "%:y-%02m-%02d.%02H" |
344 | # time-stamp-time-zone: "UTC" | |
345 | # time-stamp-time-zone: "UTC0" | |
345 | 346 | # time-stamp-end: "; # UTC" |
346 | 347 | # End: |
0 | #! /bin/sh | |
0 | #!/bin/sh | |
1 | 1 | # Attempt to guess a canonical system name. |
2 | # Copyright 1992-2016 Free Software Foundation, Inc. | |
3 | ||
4 | timestamp='2016-10-02' | |
2 | # Copyright 1992-2017 Free Software Foundation, Inc. | |
3 | ||
4 | timestamp='2017-08-08' | |
5 | 5 | |
6 | 6 | # This file is free software; you can redistribute it and/or modify it |
7 | 7 | # under the terms of the GNU General Public License as published by |
49 | 49 | GNU config.guess ($timestamp) |
50 | 50 | |
51 | 51 | Originally written by Per Bothner. |
52 | Copyright 1992-2016 Free Software Foundation, Inc. | |
52 | Copyright 1992-2017 Free Software Foundation, Inc. | |
53 | 53 | |
54 | 54 | This is free software; see the source for copying conditions. There is NO |
55 | 55 | warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." |
258 | 258 | *:Sortix:*:*) |
259 | 259 | echo ${UNAME_MACHINE}-unknown-sortix |
260 | 260 | exit ;; |
261 | *:Redox:*:*) | |
262 | echo ${UNAME_MACHINE}-unknown-redox | |
263 | exit ;; | |
261 | 264 | alpha:OSF1:*:*) |
262 | 265 | case $UNAME_RELEASE in |
263 | 266 | *4.0) |
836 | 839 | UNAME_PROCESSOR=`/usr/bin/uname -p` |
837 | 840 | case ${UNAME_PROCESSOR} in |
838 | 841 | amd64) |
839 | echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; | |
840 | *) | |
841 | echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; | |
842 | UNAME_PROCESSOR=x86_64 ;; | |
843 | i386) | |
844 | UNAME_PROCESSOR=i586 ;; | |
842 | 845 | esac |
846 | echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` | |
843 | 847 | exit ;; |
844 | 848 | i*:CYGWIN*:*) |
845 | 849 | echo ${UNAME_MACHINE}-pc-cygwin |
1302 | 1306 | if test `echo "$UNAME_RELEASE" | sed -e 's/\..*//'` -le 10 ; then |
1303 | 1307 | if [ "$CC_FOR_BUILD" != no_compiler_found ]; then |
1304 | 1308 | if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ |
1305 | (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \ | |
1306 | grep IS_64BIT_ARCH >/dev/null | |
1309 | (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \ | |
1310 | grep IS_64BIT_ARCH >/dev/null | |
1307 | 1311 | then |
1308 | 1312 | case $UNAME_PROCESSOR in |
1309 | 1313 | i386) UNAME_PROCESSOR=x86_64 ;; |
1310 | 1314 | powerpc) UNAME_PROCESSOR=powerpc64 ;; |
1311 | 1315 | esac |
1316 | fi | |
1317 | # On 10.4-10.6 one might compile for PowerPC via gcc -arch ppc | |
1318 | if (echo '#ifdef __POWERPC__'; echo IS_PPC; echo '#endif') | \ | |
1319 | (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \ | |
1320 | grep IS_PPC >/dev/null | |
1321 | then | |
1322 | UNAME_PROCESSOR=powerpc | |
1312 | 1323 | fi |
1313 | 1324 | fi |
1314 | 1325 | elif test "$UNAME_PROCESSOR" = i386 ; then |
1333 | 1344 | *:QNX:*:4*) |
1334 | 1345 | echo i386-pc-qnx |
1335 | 1346 | exit ;; |
1336 | NEO-?:NONSTOP_KERNEL:*:*) | |
1347 | NEO-*:NONSTOP_KERNEL:*:*) | |
1337 | 1348 | echo neo-tandem-nsk${UNAME_RELEASE} |
1338 | 1349 | exit ;; |
1339 | 1350 | NSE-*:NONSTOP_KERNEL:*:*) |
1340 | 1351 | echo nse-tandem-nsk${UNAME_RELEASE} |
1341 | 1352 | exit ;; |
1342 | NSR-?:NONSTOP_KERNEL:*:*) | |
1353 | NSR-*:NONSTOP_KERNEL:*:*) | |
1343 | 1354 | echo nsr-tandem-nsk${UNAME_RELEASE} |
1355 | exit ;; | |
1356 | NSX-*:NONSTOP_KERNEL:*:*) | |
1357 | echo nsx-tandem-nsk${UNAME_RELEASE} | |
1344 | 1358 | exit ;; |
1345 | 1359 | *:NonStop-UX:*:*) |
1346 | 1360 | echo mips-compaq-nonstopux |
1417 | 1431 | $0: unable to guess system type |
1418 | 1432 | |
1419 | 1433 | This script (version $timestamp), has failed to recognize the |
1420 | operating system you are using. If your script is old, overwrite | |
1421 | config.guess and config.sub with the latest versions from: | |
1434 | operating system you are using. If your script is old, overwrite *all* | |
1435 | copies of config.guess and config.sub with the latest versions from: | |
1422 | 1436 | |
1423 | 1437 | http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess |
1424 | 1438 | and |
0 | #! /bin/sh | |
0 | #!/bin/sh | |
1 | 1 | # Configuration validation subroutine script. |
2 | # Copyright 1992-2016 Free Software Foundation, Inc. | |
3 | ||
4 | timestamp='2016-09-05' | |
2 | # Copyright 1992-2017 Free Software Foundation, Inc. | |
3 | ||
4 | timestamp='2017-04-02' | |
5 | 5 | |
6 | 6 | # This file is free software; you can redistribute it and/or modify it |
7 | 7 | # under the terms of the GNU General Public License as published by |
66 | 66 | version="\ |
67 | 67 | GNU config.sub ($timestamp) |
68 | 68 | |
69 | Copyright 1992-2016 Free Software Foundation, Inc. | |
69 | Copyright 1992-2017 Free Software Foundation, Inc. | |
70 | 70 | |
71 | 71 | This is free software; see the source for copying conditions. There is NO |
72 | 72 | warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." |
262 | 262 | | fido | fr30 | frv | ft32 \ |
263 | 263 | | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ |
264 | 264 | | hexagon \ |
265 | | i370 | i860 | i960 | ia64 \ | |
265 | | i370 | i860 | i960 | ia16 | ia64 \ | |
266 | 266 | | ip2k | iq2000 \ |
267 | 267 | | k1om \ |
268 | 268 | | le32 | le64 \ |
300 | 300 | | open8 | or1k | or1knd | or32 \ |
301 | 301 | | pdp10 | pdp11 | pj | pjl \ |
302 | 302 | | powerpc | powerpc64 | powerpc64le | powerpcle \ |
303 | | pru \ | |
303 | 304 | | pyramid \ |
304 | 305 | | riscv32 | riscv64 \ |
305 | 306 | | rl78 | rx \ |
313 | 314 | | ubicom32 \ |
314 | 315 | | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \ |
315 | 316 | | visium \ |
317 | | wasm32 \ | |
316 | 318 | | we32k \ |
317 | 319 | | x86 | xc16x | xstormy16 | xtensa \ |
318 | 320 | | z8k | z80) |
386 | 388 | | h8300-* | h8500-* \ |
387 | 389 | | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ |
388 | 390 | | hexagon-* \ |
389 | | i*86-* | i860-* | i960-* | ia64-* \ | |
391 | | i*86-* | i860-* | i960-* | ia16-* | ia64-* \ | |
390 | 392 | | ip2k-* | iq2000-* \ |
391 | 393 | | k1om-* \ |
392 | 394 | | le32-* | le64-* \ |
427 | 429 | | orion-* \ |
428 | 430 | | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ |
429 | 431 | | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \ |
432 | | pru-* \ | |
430 | 433 | | pyramid-* \ |
431 | 434 | | riscv32-* | riscv64-* \ |
432 | 435 | | rl78-* | romp-* | rs6000-* | rx-* \ |
443 | 446 | | v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \ |
444 | 447 | | vax-* \ |
445 | 448 | | visium-* \ |
449 | | wasm32-* \ | |
446 | 450 | | we32k-* \ |
447 | 451 | | x86-* | x86_64-* | xc16x-* | xps100-* \ |
448 | 452 | | xstormy16-* | xtensa*-* \ |
945 | 949 | nsr-tandem) |
946 | 950 | basic_machine=nsr-tandem |
947 | 951 | ;; |
952 | nsx-tandem) | |
953 | basic_machine=nsx-tandem | |
954 | ;; | |
948 | 955 | op50n-* | op60c-*) |
949 | 956 | basic_machine=hppa1.1-oki |
950 | 957 | os=-proelf |
1239 | 1246 | vxworks29k) |
1240 | 1247 | basic_machine=a29k-wrs |
1241 | 1248 | os=-vxworks |
1249 | ;; | |
1250 | wasm32) | |
1251 | basic_machine=wasm32-unknown | |
1242 | 1252 | ;; |
1243 | 1253 | w65*) |
1244 | 1254 | basic_machine=w65-wdc |
1394 | 1404 | | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ |
1395 | 1405 | | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ |
1396 | 1406 | | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ |
1397 | | -chorusos* | -chorusrdb* | -cegcc* \ | |
1407 | | -chorusos* | -chorusrdb* | -cegcc* | -glidix* \ | |
1398 | 1408 | | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ |
1399 | 1409 | | -midipix* | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \ |
1400 | 1410 | | -linux-newlib* | -linux-musl* | -linux-uclibc* \ |
1406 | 1416 | | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ |
1407 | 1417 | | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ |
1408 | 1418 | | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es* \ |
1409 | | -onefs* | -tirtos* | -phoenix*) | |
1419 | | -onefs* | -tirtos* | -phoenix* | -fuchsia* | -redox*) | |
1410 | 1420 | # Remember, each alternative MUST END IN *, to match a version number. |
1411 | 1421 | ;; |
1412 | 1422 | -qnx*) |
1635 | 1645 | sparc-* | *-sun) |
1636 | 1646 | os=-sunos4.1.1 |
1637 | 1647 | ;; |
1648 | pru-*) | |
1649 | os=-elf | |
1650 | ;; | |
1638 | 1651 | *-be) |
1639 | 1652 | os=-beos |
1640 | 1653 | ;; |
0 | #! /bin/sh | |
0 | #!/bin/sh | |
1 | 1 | # depcomp - compile a program generating dependencies as side-effects |
2 | 2 | |
3 | scriptversion=2013-05-30.07; # UTC | |
4 | ||
5 | # Copyright (C) 1999-2014 Free Software Foundation, Inc. | |
3 | scriptversion=2016-01-11.22; # UTC | |
4 | ||
5 | # Copyright (C) 1999-2017 Free Software Foundation, Inc. | |
6 | 6 | |
7 | 7 | # This program is free software; you can redistribute it and/or modify |
8 | 8 | # it under the terms of the GNU General Public License as published by |
785 | 785 | # eval: (add-hook 'write-file-hooks 'time-stamp) |
786 | 786 | # time-stamp-start: "scriptversion=" |
787 | 787 | # time-stamp-format: "%:y-%02m-%02d.%02H" |
788 | # time-stamp-time-zone: "UTC" | |
788 | # time-stamp-time-zone: "UTC0" | |
789 | 789 | # time-stamp-end: "; # UTC" |
790 | 790 | # End: |
0 | 0 | #!/bin/sh |
1 | 1 | # install - install a program, script, or datafile |
2 | 2 | |
3 | scriptversion=2013-12-25.23; # UTC | |
3 | scriptversion=2016-01-11.22; # UTC | |
4 | 4 | |
5 | 5 | # This originates from X11R5 (mit/util/scripts/install.sh), which was |
6 | 6 | # later released in X11R6 (xc/config/util/install.sh) with the |
495 | 495 | # eval: (add-hook 'write-file-hooks 'time-stamp) |
496 | 496 | # time-stamp-start: "scriptversion=" |
497 | 497 | # time-stamp-format: "%:y-%02m-%02d.%02H" |
498 | # time-stamp-time-zone: "UTC" | |
498 | # time-stamp-time-zone: "UTC0" | |
499 | 499 | # time-stamp-end: "; # UTC" |
500 | 500 | # End: |
7271 | 7271 | # -tp=* Portland pgcc target processor selection |
7272 | 7272 | # --sysroot=* for sysroot support |
7273 | 7273 | # -O*, -g*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization |
7274 | # -specs=* GCC specs files | |
7274 | 7275 | # -stdlib=* select c++ std lib with clang |
7275 | 7276 | -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \ |
7276 | 7277 | -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \ |
7277 | -O*|-g*|-flto*|-fwhopr*|-fuse-linker-plugin|-fstack-protector*|-stdlib=*) | |
7278 | -O*|-g*|-flto*|-fwhopr*|-fuse-linker-plugin|-fstack-protector*|-stdlib=*| \ | |
7279 | -specs=*) | |
7278 | 7280 | func_quote_for_eval "$arg" |
7279 | 7281 | arg=$func_quote_for_eval_result |
7280 | 7282 | func_append compile_command " $arg" |
0 | #! /bin/sh | |
0 | #!/bin/sh | |
1 | 1 | # Common wrapper for a few potentially missing GNU programs. |
2 | 2 | |
3 | scriptversion=2013-10-28.13; # UTC | |
4 | ||
5 | # Copyright (C) 1996-2014 Free Software Foundation, Inc. | |
3 | scriptversion=2016-01-11.22; # UTC | |
4 | ||
5 | # Copyright (C) 1996-2017 Free Software Foundation, Inc. | |
6 | 6 | # Originally written by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996. |
7 | 7 | |
8 | 8 | # This program is free software; you can redistribute it and/or modify |
209 | 209 | # eval: (add-hook 'write-file-hooks 'time-stamp) |
210 | 210 | # time-stamp-start: "scriptversion=" |
211 | 211 | # time-stamp-format: "%:y-%02m-%02d.%02H" |
212 | # time-stamp-time-zone: "UTC" | |
212 | # time-stamp-time-zone: "UTC0" | |
213 | 213 | # time-stamp-end: "; # UTC" |
214 | 214 | # End: |
0 | #! /bin/sh | |
0 | #!/bin/sh | |
1 | 1 | # test-driver - basic testsuite driver script. |
2 | 2 | |
3 | scriptversion=2013-07-13.22; # UTC | |
3 | scriptversion=2016-01-11.22; # UTC | |
4 | 4 | |
5 | # Copyright (C) 2011-2014 Free Software Foundation, Inc. | |
5 | # Copyright (C) 2011-2017 Free Software Foundation, Inc. | |
6 | 6 | # |
7 | 7 | # This program is free software; you can redistribute it and/or modify |
8 | 8 | # it under the terms of the GNU General Public License as published by |
142 | 142 | # eval: (add-hook 'write-file-hooks 'time-stamp) |
143 | 143 | # time-stamp-start: "scriptversion=" |
144 | 144 | # time-stamp-format: "%:y-%02m-%02d.%02H" |
145 | # time-stamp-time-zone: "UTC" | |
145 | # time-stamp-time-zone: "UTC0" | |
146 | 146 | # time-stamp-end: "; # UTC" |
147 | 147 | # End: |
58 | 58 | /* Have libgovirt? */ |
59 | 59 | #undef HAVE_OVIRT |
60 | 60 | |
61 | /* Define to 1 if you have the `ovirt_api_search_vms' function. */ | |
62 | #undef HAVE_OVIRT_API_SEARCH_VMS | |
63 | ||
61 | 64 | /* Have rest_proxy_auth_cancel and OVIRT_REST_CALL_ERROR_CANCELLED? */ |
62 | 65 | #undef HAVE_OVIRT_CANCEL |
66 | ||
67 | /* Define to 1 if you have the `ovirt_cluster_get_data_center' function. */ | |
68 | #undef HAVE_OVIRT_CLUSTER_GET_DATA_CENTER | |
69 | ||
70 | /* Have support for data center */ | |
71 | #undef HAVE_OVIRT_DATA_CENTER | |
72 | ||
73 | /* Define to 1 if you have the `ovirt_host_get_cluster' function. */ | |
74 | #undef HAVE_OVIRT_HOST_GET_CLUSTER | |
75 | ||
76 | /* Define to 1 if you have the `ovirt_vm_get_host' function. */ | |
77 | #undef HAVE_OVIRT_VM_GET_HOST | |
63 | 78 | |
64 | 79 | /* Define to 1 if you have the `socketpair' function. */ |
65 | 80 | #undef HAVE_SOCKETPAIR |
0 | 0 | #! /bin/sh |
1 | 1 | # Guess values for system-dependent variables and create Makefiles. |
2 | # Generated by GNU Autoconf 2.69 for virt-viewer 6.0. | |
2 | # Generated by GNU Autoconf 2.69 for virt-viewer 7.0. | |
3 | 3 | # |
4 | 4 | # |
5 | 5 | # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. |
586 | 586 | # Identity of this package. |
587 | 587 | PACKAGE_NAME='virt-viewer' |
588 | 588 | PACKAGE_TARNAME='virt-viewer' |
589 | PACKAGE_VERSION='6.0' | |
590 | PACKAGE_STRING='virt-viewer 6.0' | |
589 | PACKAGE_VERSION='7.0' | |
590 | PACKAGE_STRING='virt-viewer 7.0' | |
591 | 591 | PACKAGE_BUGREPORT='' |
592 | 592 | PACKAGE_URL='' |
593 | 593 | |
646 | 646 | HAVE_SPICE_GTK_TRUE |
647 | 647 | SPICE_PROTOCOL_LIBS |
648 | 648 | SPICE_PROTOCOL_CFLAGS |
649 | SPICE_CONTROLLER_LIBS | |
650 | SPICE_CONTROLLER_CFLAGS | |
651 | 649 | SPICE_GTK_LIBS |
652 | 650 | SPICE_GTK_CFLAGS |
653 | 651 | HAVE_GTK_VNC_FALSE |
896 | 894 | GTK_VNC_LIBS |
897 | 895 | SPICE_GTK_CFLAGS |
898 | 896 | SPICE_GTK_LIBS |
899 | SPICE_CONTROLLER_CFLAGS | |
900 | SPICE_CONTROLLER_LIBS | |
901 | 897 | SPICE_PROTOCOL_CFLAGS |
902 | 898 | SPICE_PROTOCOL_LIBS |
903 | 899 | OVIRT_CFLAGS |
1442 | 1438 | # Omit some internal or obsolete options to make the list less imposing. |
1443 | 1439 | # This message is too long to be a string in the A/UX 3.1 sh. |
1444 | 1440 | cat <<_ACEOF |
1445 | \`configure' configures virt-viewer 6.0 to adapt to many kinds of systems. | |
1441 | \`configure' configures virt-viewer 7.0 to adapt to many kinds of systems. | |
1446 | 1442 | |
1447 | 1443 | Usage: $0 [OPTION]... [VAR=VALUE]... |
1448 | 1444 | |
1512 | 1508 | |
1513 | 1509 | if test -n "$ac_init_help"; then |
1514 | 1510 | case $ac_init_help in |
1515 | short | recursive ) echo "Configuration of virt-viewer 6.0:";; | |
1511 | short | recursive ) echo "Configuration of virt-viewer 7.0:";; | |
1516 | 1512 | esac |
1517 | 1513 | cat <<\_ACEOF |
1518 | 1514 | |
1595 | 1591 | C compiler flags for SPICE_GTK, overriding pkg-config |
1596 | 1592 | SPICE_GTK_LIBS |
1597 | 1593 | linker flags for SPICE_GTK, overriding pkg-config |
1598 | SPICE_CONTROLLER_CFLAGS | |
1599 | C compiler flags for SPICE_CONTROLLER, overriding pkg-config | |
1600 | SPICE_CONTROLLER_LIBS | |
1601 | linker flags for SPICE_CONTROLLER, overriding pkg-config | |
1602 | 1594 | SPICE_PROTOCOL_CFLAGS |
1603 | 1595 | C compiler flags for SPICE_PROTOCOL, overriding pkg-config |
1604 | 1596 | SPICE_PROTOCOL_LIBS |
1673 | 1665 | test -n "$ac_init_help" && exit $ac_status |
1674 | 1666 | if $ac_init_version; then |
1675 | 1667 | cat <<\_ACEOF |
1676 | virt-viewer configure 6.0 | |
1668 | virt-viewer configure 7.0 | |
1677 | 1669 | generated by GNU Autoconf 2.69 |
1678 | 1670 | |
1679 | 1671 | Copyright (C) 2012 Free Software Foundation, Inc. |
2038 | 2030 | This file contains any messages produced by compilers while |
2039 | 2031 | running configure, to aid debugging if configure makes a mistake. |
2040 | 2032 | |
2041 | It was created by virt-viewer $as_me 6.0, which was | |
2033 | It was created by virt-viewer $as_me 7.0, which was | |
2042 | 2034 | generated by GNU Autoconf 2.69. Invocation command line was |
2043 | 2035 | |
2044 | 2036 | $ $0 $@ |
2905 | 2897 | |
2906 | 2898 | # Define the identity of the package. |
2907 | 2899 | PACKAGE='virt-viewer' |
2908 | VERSION='6.0' | |
2900 | VERSION='7.0' | |
2909 | 2901 | |
2910 | 2902 | |
2911 | 2903 | cat >>confdefs.h <<_ACEOF |
3124 | 3116 | LIBVIRT_REQUIRED="0.10.0" |
3125 | 3117 | LIBVIRT_GLIB_REQUIRED="0.1.8" |
3126 | 3118 | GTK_VNC_REQUIRED="0.4.0" |
3127 | SPICE_GTK_REQUIRED="0.33" | |
3119 | SPICE_GTK_REQUIRED="0.35" | |
3128 | 3120 | SPICE_PROTOCOL_REQUIRED="0.12.7" |
3129 | 3121 | GOVIRT_REQUIRED="0.3.2" |
3130 | 3122 | |
12398 | 12390 | try_compiler_flags="$try_compiler_flags -Wextra -Wshadow -Wcast-align -Wwrite-strings -Waggregate-return" |
12399 | 12391 | # Removed -Wstrict-prototypes to avoid GTK bug |
12400 | 12392 | try_compiler_flags="$try_compiler_flags -Winline -Wredundant-decls -Wdeprecated-declarations -Wno-sign-compare" |
12393 | # Remove as glib function casts hit | |
12394 | try_compiler_flags="$try_compiler_flags -Wno-cast-function-type" | |
12401 | 12395 | if test "$enable_compile_warnings" = "error" ; then |
12402 | 12396 | try_compiler_flags="$try_compiler_flags -Werror" |
12403 | 12397 | fi |
14568 | 14562 | if test -n "$PKG_CONFIG" && \ |
14569 | 14563 | { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"spice-client-gtk-3.0 >= \$SPICE_GTK_REQUIRED |
14570 | 14564 | spice-client-glib-2.0 >= \$SPICE_GTK_REQUIRED |
14571 | spice-controller spice-protocol >= \$SPICE_PROTOCOL_REQUIRED\""; } >&5 | |
14565 | spice-protocol >= \$SPICE_PROTOCOL_REQUIRED\""; } >&5 | |
14572 | 14566 | ($PKG_CONFIG --exists --print-errors "spice-client-gtk-3.0 >= $SPICE_GTK_REQUIRED |
14573 | 14567 | spice-client-glib-2.0 >= $SPICE_GTK_REQUIRED |
14574 | spice-controller spice-protocol >= $SPICE_PROTOCOL_REQUIRED") 2>&5 | |
14568 | spice-protocol >= $SPICE_PROTOCOL_REQUIRED") 2>&5 | |
14575 | 14569 | ac_status=$? |
14576 | 14570 | $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 |
14577 | 14571 | test $ac_status = 0; }; then |
14678 | 14672 | else |
14679 | 14673 | SPICE_GTK_CFLAGS=$pkg_cv_SPICE_GTK_CFLAGS |
14680 | 14674 | SPICE_GTK_LIBS=$pkg_cv_SPICE_GTK_LIBS |
14681 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 | |
14682 | $as_echo "yes" >&6; } | |
14683 | ||
14684 | fi | |
14685 | ||
14686 | pkg_failed=no | |
14687 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for SPICE_CONTROLLER" >&5 | |
14688 | $as_echo_n "checking for SPICE_CONTROLLER... " >&6; } | |
14689 | ||
14690 | if test -n "$SPICE_CONTROLLER_CFLAGS"; then | |
14691 | pkg_cv_SPICE_CONTROLLER_CFLAGS="$SPICE_CONTROLLER_CFLAGS" | |
14692 | elif test -n "$PKG_CONFIG"; then | |
14693 | if test -n "$PKG_CONFIG" && \ | |
14694 | { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"spice-controller\""; } >&5 | |
14695 | ($PKG_CONFIG --exists --print-errors "spice-controller") 2>&5 | |
14696 | ac_status=$? | |
14697 | $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 | |
14698 | test $ac_status = 0; }; then | |
14699 | pkg_cv_SPICE_CONTROLLER_CFLAGS=`$PKG_CONFIG --cflags "spice-controller" 2>/dev/null` | |
14700 | test "x$?" != "x0" && pkg_failed=yes | |
14701 | else | |
14702 | pkg_failed=yes | |
14703 | fi | |
14704 | else | |
14705 | pkg_failed=untried | |
14706 | fi | |
14707 | if test -n "$SPICE_CONTROLLER_LIBS"; then | |
14708 | pkg_cv_SPICE_CONTROLLER_LIBS="$SPICE_CONTROLLER_LIBS" | |
14709 | elif test -n "$PKG_CONFIG"; then | |
14710 | if test -n "$PKG_CONFIG" && \ | |
14711 | { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"spice-controller\""; } >&5 | |
14712 | ($PKG_CONFIG --exists --print-errors "spice-controller") 2>&5 | |
14713 | ac_status=$? | |
14714 | $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 | |
14715 | test $ac_status = 0; }; then | |
14716 | pkg_cv_SPICE_CONTROLLER_LIBS=`$PKG_CONFIG --libs "spice-controller" 2>/dev/null` | |
14717 | test "x$?" != "x0" && pkg_failed=yes | |
14718 | else | |
14719 | pkg_failed=yes | |
14720 | fi | |
14721 | else | |
14722 | pkg_failed=untried | |
14723 | fi | |
14724 | ||
14725 | ||
14726 | ||
14727 | if test $pkg_failed = yes; then | |
14728 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | |
14729 | $as_echo "no" >&6; } | |
14730 | ||
14731 | if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then | |
14732 | _pkg_short_errors_supported=yes | |
14733 | else | |
14734 | _pkg_short_errors_supported=no | |
14735 | fi | |
14736 | if test $_pkg_short_errors_supported = yes; then | |
14737 | SPICE_CONTROLLER_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "spice-controller" 2>&1` | |
14738 | else | |
14739 | SPICE_CONTROLLER_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "spice-controller" 2>&1` | |
14740 | fi | |
14741 | # Put the nasty error message in config.log where it belongs | |
14742 | echo "$SPICE_CONTROLLER_PKG_ERRORS" >&5 | |
14743 | ||
14744 | as_fn_error $? "Package requirements (spice-controller) were not met: | |
14745 | ||
14746 | $SPICE_CONTROLLER_PKG_ERRORS | |
14747 | ||
14748 | Consider adjusting the PKG_CONFIG_PATH environment variable if you | |
14749 | installed software in a non-standard prefix. | |
14750 | ||
14751 | Alternatively, you may set the environment variables SPICE_CONTROLLER_CFLAGS | |
14752 | and SPICE_CONTROLLER_LIBS to avoid the need to call pkg-config. | |
14753 | See the pkg-config man page for more details." "$LINENO" 5 | |
14754 | elif test $pkg_failed = untried; then | |
14755 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | |
14756 | $as_echo "no" >&6; } | |
14757 | { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 | |
14758 | $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} | |
14759 | as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it | |
14760 | is in your PATH or set the PKG_CONFIG environment variable to the full | |
14761 | path to pkg-config. | |
14762 | ||
14763 | Alternatively, you may set the environment variables SPICE_CONTROLLER_CFLAGS | |
14764 | and SPICE_CONTROLLER_LIBS to avoid the need to call pkg-config. | |
14765 | See the pkg-config man page for more details. | |
14766 | ||
14767 | To get pkg-config, see <http://pkg-config.freedesktop.org/>. | |
14768 | See \`config.log' for more details" "$LINENO" 5; } | |
14769 | else | |
14770 | SPICE_CONTROLLER_CFLAGS=$pkg_cv_SPICE_CONTROLLER_CFLAGS | |
14771 | SPICE_CONTROLLER_LIBS=$pkg_cv_SPICE_CONTROLLER_LIBS | |
14772 | 14675 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 |
14773 | 14676 | $as_echo "yes" >&6; } |
14774 | 14677 | |
15015 | 14918 | |
15016 | 14919 | fi |
15017 | 14920 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext |
14921 | for ac_func in ovirt_api_search_vms ovirt_vm_get_host ovirt_host_get_cluster ovirt_cluster_get_data_center | |
14922 | do : | |
14923 | as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` | |
14924 | ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" | |
14925 | if eval test \"x\$"$as_ac_var"\" = x"yes"; then : | |
14926 | cat >>confdefs.h <<_ACEOF | |
14927 | #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 | |
14928 | _ACEOF | |
14929 | ||
14930 | $as_echo "#define HAVE_OVIRT_DATA_CENTER 1" >>confdefs.h | |
14931 | ||
14932 | fi | |
14933 | done | |
14934 | ||
15018 | 14935 | CFLAGS="$SAVED_CFLAGS" |
15019 | 14936 | LIBS="$SAVED_LIBS" |
15020 | 14937 | |
15723 | 15640 | # report actual input values of CONFIG_FILES etc. instead of their |
15724 | 15641 | # values after options handling. |
15725 | 15642 | ac_log=" |
15726 | This file was extended by virt-viewer $as_me 6.0, which was | |
15643 | This file was extended by virt-viewer $as_me 7.0, which was | |
15727 | 15644 | generated by GNU Autoconf 2.69. Invocation command line was |
15728 | 15645 | |
15729 | 15646 | CONFIG_FILES = $CONFIG_FILES |
15793 | 15710 | cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 |
15794 | 15711 | ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" |
15795 | 15712 | ac_cs_version="\\ |
15796 | virt-viewer config.status 6.0 | |
15713 | virt-viewer config.status 7.0 | |
15797 | 15714 | configured by $0, generated by GNU Autoconf 2.69, |
15798 | 15715 | with options \\"\$ac_cs_config\\" |
15799 | 15716 |
0 | 0 | |
1 | AC_INIT([virt-viewer],[6.0]) | |
1 | AC_INIT([virt-viewer],[7.0]) | |
2 | 2 | AC_CONFIG_SRCDIR(src/virt-viewer-main.c) |
3 | 3 | AC_CONFIG_MACRO_DIR([m4]) |
4 | 4 | AC_CONFIG_AUX_DIR([build-aux]) |
23 | 23 | LIBVIRT_REQUIRED="0.10.0" |
24 | 24 | LIBVIRT_GLIB_REQUIRED="0.1.8" |
25 | 25 | GTK_VNC_REQUIRED="0.4.0" |
26 | SPICE_GTK_REQUIRED="0.33" | |
26 | SPICE_GTK_REQUIRED="0.35" | |
27 | 27 | SPICE_PROTOCOL_REQUIRED="0.12.7" |
28 | 28 | GOVIRT_REQUIRED="0.3.2" |
29 | 29 | |
158 | 158 | AS_IF([test "x$with_spice_gtk" != "xno" && test "x$with_spice_gtk" != "xyes"], |
159 | 159 | [PKG_CHECK_EXISTS([spice-client-gtk-3.0 >= $SPICE_GTK_REQUIRED |
160 | 160 | spice-client-glib-2.0 >= $SPICE_GTK_REQUIRED |
161 | spice-controller spice-protocol >= $SPICE_PROTOCOL_REQUIRED], | |
161 | spice-protocol >= $SPICE_PROTOCOL_REQUIRED], | |
162 | 162 | [with_spice_gtk=yes], [with_spice_gtk=no])]) |
163 | 163 | |
164 | 164 | AS_IF([test "x$with_spice_gtk" = "xyes"], |
165 | 165 | [PKG_CHECK_MODULES(SPICE_GTK, [spice-client-gtk-3.0 >= $SPICE_GTK_REQUIRED |
166 | 166 | spice-client-glib-2.0 >= $SPICE_GTK_REQUIRED])] |
167 | [PKG_CHECK_MODULES(SPICE_CONTROLLER, [spice-controller])] | |
168 | 167 | [PKG_CHECK_MODULES(SPICE_PROTOCOL, [spice-protocol >= $SPICE_PROTOCOL_REQUIRED])] |
169 | 168 | [AC_DEFINE([HAVE_SPICE_GTK], 1, [Have spice-gtk?])] |
170 | 169 | ) |
189 | 188 | void *fun = rest_proxy_auth_cancel;])], |
190 | 189 | [AC_DEFINE([HAVE_OVIRT_CANCEL], 1, [Have rest_proxy_auth_cancel and OVIRT_REST_CALL_ERROR_CANCELLED?])], |
191 | 190 | []) |
191 | AC_CHECK_FUNCS([ovirt_api_search_vms ovirt_vm_get_host ovirt_host_get_cluster ovirt_cluster_get_data_center], | |
192 | [AC_DEFINE([HAVE_OVIRT_DATA_CENTER], 1, [Have support for data center])], | |
193 | [] | |
194 | ) | |
192 | 195 | CFLAGS="$SAVED_CFLAGS" |
193 | 196 | LIBS="$SAVED_LIBS"] |
194 | 197 | ) |
2 | 2 | MANUFACTURER = Virt Manager Project |
3 | 3 | |
4 | 4 | EXTRA_DIST = \ |
5 | spice-xpi-client-remote-viewer \ | |
6 | 5 | virt-viewer.wxs.in \ |
7 | 6 | $(NULL) |
8 | 7 |
0 | # Makefile.in generated by automake 1.15 from Makefile.am. | |
0 | # Makefile.in generated by automake 1.15.1 from Makefile.am. | |
1 | 1 | # @configure_input@ |
2 | 2 | |
3 | # Copyright (C) 1994-2014 Free Software Foundation, Inc. | |
3 | # Copyright (C) 1994-2017 Free Software Foundation, Inc. | |
4 | 4 | |
5 | 5 | # This Makefile.in is free software; the Free Software Foundation |
6 | 6 | # gives unlimited permission to copy and/or distribute it, |
96 | 96 | @OS_WIN32_FALSE@am__append_3 = $(MIMEFILES) $(DESKTOPFILES) $(APPDATAFILES) |
97 | 97 | subdir = data |
98 | 98 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
99 | am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \ | |
100 | $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ | |
101 | $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ | |
102 | $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac | |
99 | am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.m4 \ | |
100 | $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ | |
101 | $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ | |
102 | $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/acinclude.m4 \ | |
103 | $(top_srcdir)/configure.ac | |
103 | 104 | am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ |
104 | 105 | $(ACLOCAL_M4) |
105 | 106 | DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) |
272 | 273 | SED = @SED@ |
273 | 274 | SET_MAKE = @SET_MAKE@ |
274 | 275 | SHELL = @SHELL@ |
275 | SPICE_CONTROLLER_CFLAGS = @SPICE_CONTROLLER_CFLAGS@ | |
276 | SPICE_CONTROLLER_LIBS = @SPICE_CONTROLLER_LIBS@ | |
277 | 276 | SPICE_GTK_CFLAGS = @SPICE_GTK_CFLAGS@ |
278 | 277 | SPICE_GTK_LIBS = @SPICE_GTK_LIBS@ |
279 | 278 | SPICE_GTK_REQUIRED = @SPICE_GTK_REQUIRED@ |
346 | 345 | NULL = |
347 | 346 | CLEANFILES = $(am__append_1) $(am__append_2) |
348 | 347 | MANUFACTURER = Virt Manager Project |
349 | EXTRA_DIST = spice-xpi-client-remote-viewer virt-viewer.wxs.in $(NULL) \ | |
350 | $(am__append_3) | |
348 | EXTRA_DIST = virt-viewer.wxs.in $(NULL) $(am__append_3) | |
351 | 349 | @HAVE_LIBVIRT_FALSE@@OS_WIN32_TRUE@HaveLibvirt = False |
352 | 350 | @HAVE_LIBVIRT_TRUE@@OS_WIN32_TRUE@HaveLibvirt = True |
353 | 351 | @HAVE_OVIRT_FALSE@@OS_WIN32_TRUE@HaveOVirt = False |
0 | #!/bin/sh | |
1 | ||
2 | logger -t spice "starting remote-viewer --spice-controller $@..." | |
3 | env | logger -t spice | |
4 | exec remote-viewer --spice-controller "$@" 2>&1 | logger -t spice | |
5 | logger -t spice "remote-viewer execution failed" |
54 | 54 | <Condition Message="VirtViewer is already installed.">NOT NEWERVERSIONDETECTED</Condition> |
55 | 55 | |
56 | 56 | <DirectoryRef Id="TARGETDIR"> |
57 | <Component Id="CRegistryEntries" Guid="*"> | |
58 | <RegistryKey Root='HKLM' Key='Software\Microsoft\Internet Explorer\Low Rights\ElevationPolicy\{96190E9D-6FBB-64DB-9095-29F6FDE0B897}'> | |
59 | <RegistryValue Type='string' Name='AppPath' Value='[INSTALLDIR]\bin'/> | |
60 | <RegistryValue Type='string' Name='AppName' Value='remote-viewer.exe'/> | |
61 | <RegistryValue Type='integer' Name='Policy' Value='3'/> | |
62 | </RegistryKey> | |
63 | <RegistryKey Root='HKLM' Key='Software\spice-space.org\spicex'> | |
64 | <RegistryValue Type='string' Name='client' Value='[INSTALLDIR]\bin\remote-viewer.exe --spice-controller'/> | |
65 | </RegistryKey> | |
66 | </Component> | |
67 | 57 | <Component Id="CProgIds" Guid="89D6F46D-9C5E-4D65-8456-58FC361E553E"> |
68 | 58 | <ProgId Id='VirtViewer.vvfile' Description='VirtViewer connection file'> |
69 | 59 | <Extension Id='vv' ContentType='application/x-virt-viewer'> |
128 | 118 | <ComponentGroupRef Id="CG.virt-viewer"/> |
129 | 119 | <ComponentRef Id="CDepsFile"/> |
130 | 120 | <ComponentRef Id="CShortcut"/> |
131 | <ComponentRef Id="CRegistryEntries"/> | |
132 | 121 | <ComponentRef Id="CProgIds"/> |
133 | 122 | <ComponentRef Id="CHwdataUSB"/> |
134 | 123 | </Feature> |
0 | # Makefile.in generated by automake 1.15 from Makefile.am. | |
0 | # Makefile.in generated by automake 1.15.1 from Makefile.am. | |
1 | 1 | # @configure_input@ |
2 | 2 | |
3 | # Copyright (C) 1994-2014 Free Software Foundation, Inc. | |
3 | # Copyright (C) 1994-2017 Free Software Foundation, Inc. | |
4 | 4 | |
5 | 5 | # This Makefile.in is free software; the Free Software Foundation |
6 | 6 | # gives unlimited permission to copy and/or distribute it, |
89 | 89 | host_triplet = @host@ |
90 | 90 | subdir = icons/16x16 |
91 | 91 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
92 | am__aclocal_m4_deps = $(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)/acinclude.m4 $(top_srcdir)/configure.ac | |
92 | am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.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 $(top_srcdir)/acinclude.m4 \ | |
96 | $(top_srcdir)/configure.ac | |
96 | 97 | am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ |
97 | 98 | $(ACLOCAL_M4) |
98 | 99 | DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) |
264 | 265 | SED = @SED@ |
265 | 266 | SET_MAKE = @SET_MAKE@ |
266 | 267 | SHELL = @SHELL@ |
267 | SPICE_CONTROLLER_CFLAGS = @SPICE_CONTROLLER_CFLAGS@ | |
268 | SPICE_CONTROLLER_LIBS = @SPICE_CONTROLLER_LIBS@ | |
269 | 268 | SPICE_GTK_CFLAGS = @SPICE_GTK_CFLAGS@ |
270 | 269 | SPICE_GTK_LIBS = @SPICE_GTK_LIBS@ |
271 | 270 | SPICE_GTK_REQUIRED = @SPICE_GTK_REQUIRED@ |
0 | # Makefile.in generated by automake 1.15 from Makefile.am. | |
0 | # Makefile.in generated by automake 1.15.1 from Makefile.am. | |
1 | 1 | # @configure_input@ |
2 | 2 | |
3 | # Copyright (C) 1994-2014 Free Software Foundation, Inc. | |
3 | # Copyright (C) 1994-2017 Free Software Foundation, Inc. | |
4 | 4 | |
5 | 5 | # This Makefile.in is free software; the Free Software Foundation |
6 | 6 | # gives unlimited permission to copy and/or distribute it, |
89 | 89 | host_triplet = @host@ |
90 | 90 | subdir = icons/22x22 |
91 | 91 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
92 | am__aclocal_m4_deps = $(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)/acinclude.m4 $(top_srcdir)/configure.ac | |
92 | am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.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 $(top_srcdir)/acinclude.m4 \ | |
96 | $(top_srcdir)/configure.ac | |
96 | 97 | am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ |
97 | 98 | $(ACLOCAL_M4) |
98 | 99 | DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) |
264 | 265 | SED = @SED@ |
265 | 266 | SET_MAKE = @SET_MAKE@ |
266 | 267 | SHELL = @SHELL@ |
267 | SPICE_CONTROLLER_CFLAGS = @SPICE_CONTROLLER_CFLAGS@ | |
268 | SPICE_CONTROLLER_LIBS = @SPICE_CONTROLLER_LIBS@ | |
269 | 268 | SPICE_GTK_CFLAGS = @SPICE_GTK_CFLAGS@ |
270 | 269 | SPICE_GTK_LIBS = @SPICE_GTK_LIBS@ |
271 | 270 | SPICE_GTK_REQUIRED = @SPICE_GTK_REQUIRED@ |
0 | # Makefile.in generated by automake 1.15 from Makefile.am. | |
0 | # Makefile.in generated by automake 1.15.1 from Makefile.am. | |
1 | 1 | # @configure_input@ |
2 | 2 | |
3 | # Copyright (C) 1994-2014 Free Software Foundation, Inc. | |
3 | # Copyright (C) 1994-2017 Free Software Foundation, Inc. | |
4 | 4 | |
5 | 5 | # This Makefile.in is free software; the Free Software Foundation |
6 | 6 | # gives unlimited permission to copy and/or distribute it, |
89 | 89 | host_triplet = @host@ |
90 | 90 | subdir = icons/24x24 |
91 | 91 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
92 | am__aclocal_m4_deps = $(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)/acinclude.m4 $(top_srcdir)/configure.ac | |
92 | am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.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 $(top_srcdir)/acinclude.m4 \ | |
96 | $(top_srcdir)/configure.ac | |
96 | 97 | am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ |
97 | 98 | $(ACLOCAL_M4) |
98 | 99 | DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) |
265 | 266 | SED = @SED@ |
266 | 267 | SET_MAKE = @SET_MAKE@ |
267 | 268 | SHELL = @SHELL@ |
268 | SPICE_CONTROLLER_CFLAGS = @SPICE_CONTROLLER_CFLAGS@ | |
269 | SPICE_CONTROLLER_LIBS = @SPICE_CONTROLLER_LIBS@ | |
270 | 269 | SPICE_GTK_CFLAGS = @SPICE_GTK_CFLAGS@ |
271 | 270 | SPICE_GTK_LIBS = @SPICE_GTK_LIBS@ |
272 | 271 | SPICE_GTK_REQUIRED = @SPICE_GTK_REQUIRED@ |
0 | # Makefile.in generated by automake 1.15 from Makefile.am. | |
0 | # Makefile.in generated by automake 1.15.1 from Makefile.am. | |
1 | 1 | # @configure_input@ |
2 | 2 | |
3 | # Copyright (C) 1994-2014 Free Software Foundation, Inc. | |
3 | # Copyright (C) 1994-2017 Free Software Foundation, Inc. | |
4 | 4 | |
5 | 5 | # This Makefile.in is free software; the Free Software Foundation |
6 | 6 | # gives unlimited permission to copy and/or distribute it, |
89 | 89 | host_triplet = @host@ |
90 | 90 | subdir = icons/256x256 |
91 | 91 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
92 | am__aclocal_m4_deps = $(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)/acinclude.m4 $(top_srcdir)/configure.ac | |
92 | am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.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 $(top_srcdir)/acinclude.m4 \ | |
96 | $(top_srcdir)/configure.ac | |
96 | 97 | am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ |
97 | 98 | $(ACLOCAL_M4) |
98 | 99 | DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) |
264 | 265 | SED = @SED@ |
265 | 266 | SET_MAKE = @SET_MAKE@ |
266 | 267 | SHELL = @SHELL@ |
267 | SPICE_CONTROLLER_CFLAGS = @SPICE_CONTROLLER_CFLAGS@ | |
268 | SPICE_CONTROLLER_LIBS = @SPICE_CONTROLLER_LIBS@ | |
269 | 268 | SPICE_GTK_CFLAGS = @SPICE_GTK_CFLAGS@ |
270 | 269 | SPICE_GTK_LIBS = @SPICE_GTK_LIBS@ |
271 | 270 | SPICE_GTK_REQUIRED = @SPICE_GTK_REQUIRED@ |
0 | # Makefile.in generated by automake 1.15 from Makefile.am. | |
0 | # Makefile.in generated by automake 1.15.1 from Makefile.am. | |
1 | 1 | # @configure_input@ |
2 | 2 | |
3 | # Copyright (C) 1994-2014 Free Software Foundation, Inc. | |
3 | # Copyright (C) 1994-2017 Free Software Foundation, Inc. | |
4 | 4 | |
5 | 5 | # This Makefile.in is free software; the Free Software Foundation |
6 | 6 | # gives unlimited permission to copy and/or distribute it, |
89 | 89 | host_triplet = @host@ |
90 | 90 | subdir = icons/32x32 |
91 | 91 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
92 | am__aclocal_m4_deps = $(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)/acinclude.m4 $(top_srcdir)/configure.ac | |
92 | am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.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 $(top_srcdir)/acinclude.m4 \ | |
96 | $(top_srcdir)/configure.ac | |
96 | 97 | am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ |
97 | 98 | $(ACLOCAL_M4) |
98 | 99 | DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) |
264 | 265 | SED = @SED@ |
265 | 266 | SET_MAKE = @SET_MAKE@ |
266 | 267 | SHELL = @SHELL@ |
267 | SPICE_CONTROLLER_CFLAGS = @SPICE_CONTROLLER_CFLAGS@ | |
268 | SPICE_CONTROLLER_LIBS = @SPICE_CONTROLLER_LIBS@ | |
269 | 268 | SPICE_GTK_CFLAGS = @SPICE_GTK_CFLAGS@ |
270 | 269 | SPICE_GTK_LIBS = @SPICE_GTK_LIBS@ |
271 | 270 | SPICE_GTK_REQUIRED = @SPICE_GTK_REQUIRED@ |
0 | # Makefile.in generated by automake 1.15 from Makefile.am. | |
0 | # Makefile.in generated by automake 1.15.1 from Makefile.am. | |
1 | 1 | # @configure_input@ |
2 | 2 | |
3 | # Copyright (C) 1994-2014 Free Software Foundation, Inc. | |
3 | # Copyright (C) 1994-2017 Free Software Foundation, Inc. | |
4 | 4 | |
5 | 5 | # This Makefile.in is free software; the Free Software Foundation |
6 | 6 | # gives unlimited permission to copy and/or distribute it, |
89 | 89 | host_triplet = @host@ |
90 | 90 | subdir = icons/48x48 |
91 | 91 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
92 | am__aclocal_m4_deps = $(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)/acinclude.m4 $(top_srcdir)/configure.ac | |
92 | am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.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 $(top_srcdir)/acinclude.m4 \ | |
96 | $(top_srcdir)/configure.ac | |
96 | 97 | am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ |
97 | 98 | $(ACLOCAL_M4) |
98 | 99 | DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) |
264 | 265 | SED = @SED@ |
265 | 266 | SET_MAKE = @SET_MAKE@ |
266 | 267 | SHELL = @SHELL@ |
267 | SPICE_CONTROLLER_CFLAGS = @SPICE_CONTROLLER_CFLAGS@ | |
268 | SPICE_CONTROLLER_LIBS = @SPICE_CONTROLLER_LIBS@ | |
269 | 268 | SPICE_GTK_CFLAGS = @SPICE_GTK_CFLAGS@ |
270 | 269 | SPICE_GTK_LIBS = @SPICE_GTK_LIBS@ |
271 | 270 | SPICE_GTK_REQUIRED = @SPICE_GTK_REQUIRED@ |
0 | # Makefile.in generated by automake 1.15 from Makefile.am. | |
0 | # Makefile.in generated by automake 1.15.1 from Makefile.am. | |
1 | 1 | # @configure_input@ |
2 | 2 | |
3 | # Copyright (C) 1994-2014 Free Software Foundation, Inc. | |
3 | # Copyright (C) 1994-2017 Free Software Foundation, Inc. | |
4 | 4 | |
5 | 5 | # This Makefile.in is free software; the Free Software Foundation |
6 | 6 | # gives unlimited permission to copy and/or distribute it, |
89 | 89 | host_triplet = @host@ |
90 | 90 | subdir = icons |
91 | 91 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
92 | am__aclocal_m4_deps = $(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)/acinclude.m4 $(top_srcdir)/configure.ac | |
92 | am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.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 $(top_srcdir)/acinclude.m4 \ | |
96 | $(top_srcdir)/configure.ac | |
96 | 97 | am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ |
97 | 98 | $(ACLOCAL_M4) |
98 | 99 | DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) |
296 | 297 | SED = @SED@ |
297 | 298 | SET_MAKE = @SET_MAKE@ |
298 | 299 | SHELL = @SHELL@ |
299 | SPICE_CONTROLLER_CFLAGS = @SPICE_CONTROLLER_CFLAGS@ | |
300 | SPICE_CONTROLLER_LIBS = @SPICE_CONTROLLER_LIBS@ | |
301 | 300 | SPICE_GTK_CFLAGS = @SPICE_GTK_CFLAGS@ |
302 | 301 | SPICE_GTK_LIBS = @SPICE_GTK_LIBS@ |
303 | 302 | SPICE_GTK_REQUIRED = @SPICE_GTK_REQUIRED@ |
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 | # Makefile.in generated by automake 1.15 from Makefile.am. | |
0 | # Makefile.in generated by automake 1.15.1 from Makefile.am. | |
1 | 1 | # @configure_input@ |
2 | 2 | |
3 | # Copyright (C) 1994-2014 Free Software Foundation, Inc. | |
3 | # Copyright (C) 1994-2017 Free Software Foundation, Inc. | |
4 | 4 | |
5 | 5 | # This Makefile.in is free software; the Free Software Foundation |
6 | 6 | # gives unlimited permission to copy and/or distribute it, |
88 | 88 | host_triplet = @host@ |
89 | 89 | subdir = man |
90 | 90 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
91 | am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \ | |
92 | $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ | |
93 | $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ | |
94 | $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac | |
91 | am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.m4 \ | |
92 | $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ | |
93 | $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ | |
94 | $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/acinclude.m4 \ | |
95 | $(top_srcdir)/configure.ac | |
95 | 96 | am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ |
96 | 97 | $(ACLOCAL_M4) |
97 | 98 | DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) |
265 | 266 | SED = @SED@ |
266 | 267 | SET_MAKE = @SET_MAKE@ |
267 | 268 | SHELL = @SHELL@ |
268 | SPICE_CONTROLLER_CFLAGS = @SPICE_CONTROLLER_CFLAGS@ | |
269 | SPICE_CONTROLLER_LIBS = @SPICE_CONTROLLER_LIBS@ | |
270 | 269 | SPICE_GTK_CFLAGS = @SPICE_GTK_CFLAGS@ |
271 | 270 | SPICE_GTK_LIBS = @SPICE_GTK_LIBS@ |
272 | 271 | SPICE_GTK_REQUIRED = @SPICE_GTK_REQUIRED@ |
0 | .\" Automatically generated by Pod::Man 4.09 (Pod::Simple 3.35) | |
0 | .\" Automatically generated by Pod::Man 4.11 (Pod::Simple 3.35) | |
1 | 1 | .\" |
2 | 2 | .\" Standard preamble: |
3 | 3 | .\" ======================================================================== |
53 | 53 | .\" Avoid warning from groff about undefined register 'F'. |
54 | 54 | .de IX |
55 | 55 | .. |
56 | .if !\nF .nr F 0 | |
57 | .if \nF>0 \{\ | |
58 | . de IX | |
59 | . tm Index:\\$1\t\\n%\t"\\$2" | |
56 | .nr rF 0 | |
57 | .if \n(.g .if rF .nr rF 1 | |
58 | .if (\n(rF:(\n(.g==0)) \{\ | |
59 | . if \nF \{\ | |
60 | . de IX | |
61 | . tm Index:\\$1\t\\n%\t"\\$2" | |
60 | 62 | .. |
61 | . if !\nF==2 \{\ | |
62 | . nr % 0 | |
63 | . nr F 2 | |
63 | . if !\nF==2 \{\ | |
64 | . nr % 0 | |
65 | . nr F 2 | |
66 | . \} | |
64 | 67 | . \} |
65 | 68 | .\} |
69 | .rr rF | |
66 | 70 | .\" |
67 | 71 | .\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2). |
68 | 72 | .\" Fear. Run. Save yourself. No user-serviceable parts. |
128 | 132 | .\" ======================================================================== |
129 | 133 | .\" |
130 | 134 | .IX Title "REMOTE-VIEWER 1" |
131 | .TH REMOTE-VIEWER 1 "2017-01-19" "perl v5.24.2" "Virtualization Support" | |
135 | .TH REMOTE-VIEWER 1 "2018-07-27" "perl v5.26.2" "Virtualization Support" | |
132 | 136 | .\" For nroff, turn off justification. Always turn off hyphenation; it makes |
133 | 137 | .\" way too many mistakes in technical documents. |
134 | 138 | .if n .ad l |
148 | 152 | .PP |
149 | 153 | The \s-1URI\s0 can also point to a connection settings file, see the \s-1CONNECTION FILE\s0 |
150 | 154 | section for a description of the format. |
155 | .PP | |
156 | If \s-1URI\s0 is '\-', then remote-viewer will read the standard input as a | |
157 | connection settings file and attempt to connect using it. | |
151 | 158 | .SH "OPTIONS" |
152 | 159 | .IX Header "OPTIONS" |
153 | 160 | The following options are accepted when running \f(CW\*(C`remote\-viewer\*(C'\fR: |
176 | 183 | .IP "\-t \s-1TITLE,\s0 \-\-title \s-1TITLE\s0" 4 |
177 | 184 | .IX Item "-t TITLE, --title TITLE" |
178 | 185 | Set the window title to \fB\s-1TITLE\s0\fR |
179 | .IP "\-\-spice\-controller" 4 | |
180 | .IX Item "--spice-controller" | |
181 | Use the \s-1SPICE\s0 controller to initialize the connection with the \s-1SPICE\s0 | |
182 | server. This option is used by the \s-1SPICE\s0 browser addons to allow web | |
183 | page to start a client. | |
184 | 186 | .IP "\-\-debug" 4 |
185 | 187 | .IX Item "--debug" |
186 | 188 | Print debugging information |
308 | 310 | .el .IP "\f(CWtls\-ciphers\fR (string)" 4 |
309 | 311 | .IX Item "tls-ciphers (string)" |
310 | 312 | Set the cipher list to use for the secure connection, in textual |
311 | OpenSSL cipher list format. (see \fIciphers\fR\|(1)) | |
313 | OpenSSL cipher list format. (see \fBciphers\fR\|(1)) | |
312 | 314 | .ie n .IP """title"" (string)" 4 |
313 | 315 | .el .IP "\f(CWtitle\fR (string)" 4 |
314 | 316 | .IX Item "title (string)" |
497 | 499 | to the extent permitted by law. |
498 | 500 | .SH "SEE ALSO" |
499 | 501 | .IX Header "SEE ALSO" |
500 | \&\f(CW\*(C`virt\-viewer(1)\*(C'\fR, \f(CW\*(C`spice\-gtk(1)\*(C'\fR, the project website \f(CW\*(C`http://virt\-manager.org\*(C'\fR | |
502 | \&\f(CW\*(C`virt\-viewer(1)\*(C'\fR, \f(CW\*(C`spice\-client(1)\*(C'\fR, the project website \f(CW\*(C`http://virt\-manager.org\*(C'\fR |
16 | 16 | |
17 | 17 | The URI can also point to a connection settings file, see the CONNECTION FILE |
18 | 18 | section for a description of the format. |
19 | ||
20 | If URI is '-', then remote-viewer will read the standard input as a | |
21 | connection settings file and attempt to connect using it. | |
19 | 22 | |
20 | 23 | =head1 OPTIONS |
21 | 24 | |
53 | 56 | =item -t TITLE, --title TITLE |
54 | 57 | |
55 | 58 | Set the window title to B<TITLE> |
56 | ||
57 | =item --spice-controller | |
58 | ||
59 | Use the SPICE controller to initialize the connection with the SPICE | |
60 | server. This option is used by the SPICE browser addons to allow web | |
61 | page to start a client. | |
62 | 59 | |
63 | 60 | =item --debug |
64 | 61 | |
384 | 381 | |
385 | 382 | =head1 SEE ALSO |
386 | 383 | |
387 | C<virt-viewer(1)>, C<spice-gtk(1)>, the project website C<http://virt-manager.org> | |
384 | C<virt-viewer(1)>, C<spice-client(1)>, the project website C<http://virt-manager.org> | |
388 | 385 | |
389 | 386 | =cut |
0 | .\" Automatically generated by Pod::Man 4.09 (Pod::Simple 3.35) | |
0 | .\" Automatically generated by Pod::Man 4.11 (Pod::Simple 3.35) | |
1 | 1 | .\" |
2 | 2 | .\" Standard preamble: |
3 | 3 | .\" ======================================================================== |
53 | 53 | .\" Avoid warning from groff about undefined register 'F'. |
54 | 54 | .de IX |
55 | 55 | .. |
56 | .if !\nF .nr F 0 | |
57 | .if \nF>0 \{\ | |
58 | . de IX | |
59 | . tm Index:\\$1\t\\n%\t"\\$2" | |
60 | .. | |
61 | . if !\nF==2 \{\ | |
62 | . nr % 0 | |
63 | . nr F 2 | |
56 | .nr rF 0 | |
57 | .if \n(.g .if rF .nr rF 1 | |
58 | .if (\n(rF:(\n(.g==0)) \{\ | |
59 | . if \nF \{\ | |
60 | . de IX | |
61 | . tm Index:\\$1\t\\n%\t"\\$2" | |
62 | .. | |
63 | . if !\nF==2 \{\ | |
64 | . nr % 0 | |
65 | . nr F 2 | |
66 | . \} | |
64 | 67 | . \} |
65 | 68 | .\} |
69 | .rr rF | |
66 | 70 | .\" |
67 | 71 | .\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2). |
68 | 72 | .\" Fear. Run. Save yourself. No user-serviceable parts. |
128 | 132 | .\" ======================================================================== |
129 | 133 | .\" |
130 | 134 | .IX Title "VIRT-VIEWER 1" |
131 | .TH VIRT-VIEWER 1 "2017-07-07" "perl v5.24.2" "Virtualization Support" | |
135 | .TH VIRT-VIEWER 1 "2018-07-27" "perl v5.26.2" "Virtualization Support" | |
132 | 136 | .\" For nroff, turn off justification. Always turn off hyphenation; it makes |
133 | 137 | .\" way too many mistakes in technical documents. |
134 | 138 | .if n .ad l |
351 | 355 | to the extent permitted by law. |
352 | 356 | .SH "SEE ALSO" |
353 | 357 | .IX Header "SEE ALSO" |
354 | \&\f(CWvirsh(1)\fR, \f(CW\*(C`virt\-manager(1)\*(C'\fR, \f(CW\*(C`spice\-gtk(1)\*(C'\fR, the project website \f(CW\*(C`http://virt\-manager.org\*(C'\fR | |
358 | \&\f(CWvirsh(1)\fR, \f(CW\*(C`virt\-manager(1)\*(C'\fR, \f(CW\*(C`spice\-client(1)\*(C'\fR, the project website \f(CW\*(C`http://virt\-manager.org\*(C'\fR |
222 | 222 | |
223 | 223 | =head1 SEE ALSO |
224 | 224 | |
225 | C<virsh(1)>, C<virt-manager(1)>, C<spice-gtk(1)>, the project website C<http://virt-manager.org> | |
225 | C<virsh(1)>, C<virt-manager(1)>, C<spice-client(1)>, the project website C<http://virt-manager.org> | |
226 | 226 | |
227 | 227 | =cut |
137 | 137 | %{mingw32_bindir}/virt-viewer.exe |
138 | 138 | %{mingw32_bindir}/remote-viewer.exe |
139 | 139 | %{mingw32_bindir}/windows-cmdline-wrapper.exe |
140 | %{mingw32_bindir}/debug-helper.exe | |
141 | 140 | |
142 | 141 | %dir %{mingw32_datadir}/virt-viewer/ |
143 | 142 | %{mingw32_datadir}/icons/hicolor/*/apps/* |
154 | 153 | %{mingw64_bindir}/virt-viewer.exe |
155 | 154 | %{mingw64_bindir}/remote-viewer.exe |
156 | 155 | %{mingw64_bindir}/windows-cmdline-wrapper.exe |
157 | %{mingw64_bindir}/debug-helper.exe | |
158 | 156 | |
159 | 157 | %dir %{mingw64_datadir}/virt-viewer/ |
160 | 158 | %{mingw64_datadir}/icons/hicolor/*/apps/* |
6 | 6 | msgstr "" |
7 | 7 | "Project-Id-Version: PACKAGE VERSION\n" |
8 | 8 | "Report-Msgid-Bugs-To: \n" |
9 | "POT-Creation-Date: 2016-11-24 13:55+0000\n" | |
9 | "POT-Creation-Date: 2017-12-04 16:36+0000\n" | |
10 | 10 | "PO-Revision-Date: \n" |
11 | 11 | "Last-Translator: \n" |
12 | 12 | "Language-Team: Afrikaans\n" |
43 | 43 | msgid "Virt-Viewer connection file" |
44 | 44 | msgstr "" |
45 | 45 | |
46 | #: ../src/remote-viewer.c:139 | |
46 | #: ../src/remote-viewer-iso-list-dialog.c:160 | |
47 | msgid "Failed to fetch CD names" | |
48 | msgstr "" | |
49 | ||
50 | #: ../src/remote-viewer-iso-list-dialog.c:212 | |
51 | msgid "<b>Loading...</b>" | |
52 | msgstr "" | |
53 | ||
54 | #: ../src/remote-viewer-iso-list-dialog.c:285 | |
55 | msgid "Refresh" | |
56 | msgstr "" | |
57 | ||
58 | #: ../src/remote-viewer-iso-list-dialog.c:286 | |
59 | msgid "Close" | |
60 | msgstr "" | |
61 | ||
62 | #: ../src/remote-viewer-iso-list-dialog.c:306 | |
63 | msgid "Unspecified error" | |
64 | msgstr "" | |
65 | ||
66 | #: ../src/remote-viewer-iso-list-dialog.c:328 | |
67 | msgid "Failed to change CD" | |
68 | msgstr "" | |
69 | ||
70 | #: ../src/remote-viewer-iso-list-dialog.c:380 | |
71 | msgid "Change CD" | |
72 | msgstr "" | |
73 | ||
74 | #: ../src/remote-viewer.c:118 | |
47 | 75 | msgid "Set window title" |
48 | 76 | msgstr "" |
49 | 77 | |
50 | #: ../src/remote-viewer.c:142 | |
51 | msgid "Open connection using Spice controller communication" | |
78 | #: ../src/remote-viewer.c:125 | |
79 | msgid "Remote viewer client" | |
52 | 80 | msgstr "" |
53 | 81 | |
54 | 82 | #: ../src/remote-viewer.c:150 |
55 | msgid "Remote viewer client" | |
56 | msgstr "" | |
57 | ||
58 | #: ../src/remote-viewer.c:175 | |
59 | 83 | #, c-format |
60 | 84 | msgid "" |
61 | 85 | "\n" |
63 | 87 | "\n" |
64 | 88 | msgstr "" |
65 | 89 | |
66 | #: ../src/remote-viewer.c:187 | |
67 | #, c-format | |
68 | msgid "" | |
69 | "\n" | |
70 | "Error: extra arguments given while using Spice controller\n" | |
71 | "\n" | |
72 | msgstr "" | |
73 | ||
74 | #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152 | |
90 | #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202 | |
75 | 91 | #, c-format |
76 | 92 | msgid "Run '%s --help' to see a full list of available command line options\n" |
77 | 93 | msgstr "" |
78 | 94 | |
79 | #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183 | |
95 | #: ../src/remote-viewer.c:435 | |
96 | msgid "failed to parse ovirt uri" | |
97 | msgstr "" | |
98 | ||
99 | #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101 | |
100 | msgid "Authentication was cancelled" | |
101 | msgstr "" | |
102 | ||
103 | #: ../src/remote-viewer.c:480 | |
104 | #, c-format | |
105 | msgid "oVirt VM %s is not running" | |
106 | msgstr "" | |
107 | ||
108 | #: ../src/remote-viewer.c:494 | |
109 | #, c-format | |
110 | msgid "oVirt VM %s has no display" | |
111 | msgstr "" | |
112 | ||
113 | #: ../src/remote-viewer.c:520 | |
114 | #, c-format | |
115 | msgid "oVirt VM %s has no host information" | |
116 | msgstr "" | |
117 | ||
118 | #: ../src/remote-viewer.c:531 | |
119 | #, c-format | |
120 | msgid "oVirt VM %s has unknown display type: %d" | |
121 | msgstr "" | |
122 | ||
123 | #: ../src/remote-viewer.c:713 | |
80 | 124 | msgid "Failed to initiate connection" |
81 | 125 | msgstr "" |
82 | 126 | |
83 | #: ../src/remote-viewer.c:297 | |
84 | msgid "Display disabled by controller" | |
85 | msgstr "" | |
86 | ||
87 | #: ../src/remote-viewer.c:593 | |
88 | #, c-format | |
89 | msgid "Controller connection failed: %s" | |
90 | msgstr "" | |
91 | ||
92 | #: ../src/remote-viewer.c:848 | |
93 | msgid "failed to parse ovirt uri" | |
94 | msgstr "" | |
95 | ||
96 | #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1014 | |
97 | msgid "Authentication was cancelled" | |
98 | msgstr "" | |
99 | ||
100 | #: ../src/remote-viewer.c:893 | |
101 | #, c-format | |
102 | msgid "oVirt VM %s is not running" | |
103 | msgstr "" | |
104 | ||
105 | #: ../src/remote-viewer.c:907 | |
106 | #, c-format | |
107 | msgid "oVirt VM %s has no display" | |
108 | msgstr "" | |
109 | ||
110 | #: ../src/remote-viewer.c:933 | |
111 | #, c-format | |
112 | msgid "oVirt VM %s has no host information" | |
113 | msgstr "" | |
114 | ||
115 | #: ../src/remote-viewer.c:944 | |
116 | #, c-format | |
117 | msgid "oVirt VM %s has unknown display type: %d" | |
118 | msgstr "" | |
119 | ||
120 | #: ../src/remote-viewer.c:1115 | |
121 | msgid "Setting up Spice session..." | |
122 | msgstr "" | |
123 | ||
124 | #: ../src/remote-viewer.c:1123 | |
127 | #: ../src/remote-viewer.c:742 | |
125 | 128 | msgid "No connection was chosen" |
126 | 129 | msgstr "" |
127 | 130 | |
128 | #: ../src/remote-viewer.c:1141 | |
131 | #: ../src/remote-viewer.c:759 | |
132 | msgid "Failed to read stdin: " | |
133 | msgstr "" | |
134 | ||
135 | #: ../src/remote-viewer.c:776 | |
129 | 136 | #, c-format |
130 | 137 | msgid "Invalid file %s: " |
131 | 138 | msgstr "" |
132 | 139 | |
133 | #: ../src/remote-viewer.c:1149 | |
140 | #: ../src/remote-viewer.c:786 | |
134 | 141 | msgid "Cannot determine the connection type from URI" |
135 | 142 | msgstr "" |
136 | 143 | |
137 | #: ../src/remote-viewer.c:1155 | |
144 | #: ../src/remote-viewer.c:792 | |
138 | 145 | msgid "Couldn't open oVirt session: " |
146 | msgstr "" | |
147 | ||
148 | #: ../src/remote-viewer.c:815 | |
149 | #, c-format | |
150 | msgid "Unable to connect: %s" | |
139 | 151 | msgstr "" |
140 | 152 | |
141 | 153 | #. |
162 | 174 | msgstr "" |
163 | 175 | |
164 | 176 | #: ../src/resources/ui/remote-viewer-connect.ui.h:5 |
165 | #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:922 | |
177 | #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979 | |
166 | 178 | #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2 |
179 | #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1 | |
167 | 180 | msgid "_Cancel" |
168 | 181 | msgstr "" |
169 | 182 | |
170 | 183 | #: ../src/resources/ui/remote-viewer-connect.ui.h:6 |
171 | 184 | #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3 |
172 | 185 | msgid "C_onnect" |
186 | msgstr "" | |
187 | ||
188 | #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1 | |
189 | msgid "Loading..." | |
190 | msgstr "" | |
191 | ||
192 | #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2 | |
193 | msgid "Select ISO" | |
194 | msgstr "" | |
195 | ||
196 | #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3 | |
197 | msgid "Selected" | |
198 | msgstr "" | |
199 | ||
200 | #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4 | |
201 | #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4 | |
202 | msgid "Name" | |
173 | 203 | msgstr "" |
174 | 204 | |
175 | 205 | #: ../src/resources/ui/virt-viewer-about.ui.h:1 |
244 | 274 | msgid "Unsupported graphic type '%s'" |
245 | 275 | msgstr "" |
246 | 276 | |
247 | #: ../src/virt-viewer-app.c:1145 | |
277 | #: ../src/virt-viewer-app.c:1146 | |
248 | 278 | msgid "Connect to ssh failed." |
249 | 279 | msgstr "" |
250 | 280 | |
251 | #: ../src/virt-viewer-app.c:1147 | |
252 | msgid "Can't connect to channel, SSH only supported." | |
253 | msgstr "" | |
254 | ||
255 | #: ../src/virt-viewer-app.c:1159 | |
281 | #: ../src/virt-viewer-app.c:1161 | |
282 | #, c-format | |
283 | msgid "Can't connect to channel: %s" | |
284 | msgstr "" | |
285 | ||
286 | #: ../src/virt-viewer-app.c:1163 | |
287 | msgid "only SSH or unix socket connection supported." | |
288 | msgstr "" | |
289 | ||
290 | #: ../src/virt-viewer-app.c:1176 | |
256 | 291 | msgid "Connect to channel unsupported." |
257 | 292 | msgstr "" |
258 | 293 | |
259 | #: ../src/virt-viewer-app.c:1221 | |
294 | #: ../src/virt-viewer-app.c:1238 | |
260 | 295 | msgid "Display can only be attached through libvirt with --attach" |
261 | 296 | msgstr "" |
262 | 297 | |
263 | #: ../src/virt-viewer-app.c:1244 | |
298 | #: ../src/virt-viewer-app.c:1263 | |
264 | 299 | msgid "Connecting to graphic server" |
265 | 300 | msgstr "" |
266 | 301 | |
267 | #: ../src/virt-viewer-app.c:1343 | |
302 | #: ../src/virt-viewer-app.c:1362 | |
268 | 303 | msgid "Guest domain has shutdown" |
269 | 304 | msgstr "" |
270 | 305 | |
271 | #: ../src/virt-viewer-app.c:1404 | |
306 | #: ../src/virt-viewer-app.c:1423 | |
272 | 307 | msgid "Connected to graphic server" |
273 | 308 | msgstr "" |
274 | 309 | |
275 | #: ../src/virt-viewer-app.c:1431 | |
310 | #: ../src/virt-viewer-app.c:1452 | |
276 | 311 | #, c-format |
277 | 312 | msgid "Unable to connect to the graphic server %s" |
278 | 313 | msgstr "" |
279 | 314 | |
280 | #: ../src/virt-viewer-app.c:1457 | |
315 | #: ../src/virt-viewer-app.c:1478 | |
281 | 316 | #, c-format |
282 | 317 | msgid "Unable to authenticate with remote desktop server at %s: %s\n" |
283 | 318 | msgstr "" |
284 | 319 | |
285 | #: ../src/virt-viewer-app.c:1471 | |
320 | #: ../src/virt-viewer-app.c:1492 | |
286 | 321 | #, c-format |
287 | 322 | msgid "Unable to authenticate with remote desktop server: %s" |
288 | 323 | msgstr "" |
289 | 324 | |
290 | #: ../src/virt-viewer-app.c:1479 | |
325 | #: ../src/virt-viewer-app.c:1500 | |
291 | 326 | #, c-format |
292 | 327 | msgid "USB redirection error: %s" |
293 | 328 | msgstr "" |
294 | 329 | |
295 | #: ../src/virt-viewer-app.c:1813 | |
330 | #: ../src/virt-viewer-app.c:1834 | |
296 | 331 | #, c-format |
297 | 332 | msgid "Zoom level must be within %d-%d\n" |
298 | 333 | msgstr "" |
299 | 334 | |
300 | #: ../src/virt-viewer-app.c:1866 | |
335 | #: ../src/virt-viewer-app.c:1887 | |
301 | 336 | #, c-format |
302 | 337 | msgid "%s\n" |
303 | 338 | msgstr "" |
304 | 339 | |
305 | #: ../src/virt-viewer-app.c:1876 | |
340 | #: ../src/virt-viewer-app.c:1897 | |
306 | 341 | #, c-format |
307 | 342 | msgid "%s version %s" |
308 | 343 | msgstr "" |
309 | 344 | |
310 | #: ../src/virt-viewer-app.c:2300 | |
345 | #: ../src/virt-viewer-app.c:2321 | |
311 | 346 | #, c-format |
312 | 347 | msgid "Display _%d" |
313 | 348 | msgstr "" |
314 | 349 | |
315 | #: ../src/virt-viewer-app.c:2556 | |
350 | #: ../src/virt-viewer-app.c:2577 | |
316 | 351 | #, c-format |
317 | 352 | msgid "Invalid kiosk-quit argument: %s" |
318 | 353 | msgstr "" |
319 | 354 | |
320 | #: ../src/virt-viewer-app.c:2567 | |
355 | #: ../src/virt-viewer-app.c:2588 | |
321 | 356 | msgid "Display version information" |
322 | 357 | msgstr "" |
323 | 358 | |
324 | #: ../src/virt-viewer-app.c:2569 | |
359 | #: ../src/virt-viewer-app.c:2590 | |
325 | 360 | msgid "Zoom level of window, in percentage" |
326 | 361 | msgstr "" |
327 | 362 | |
328 | #: ../src/virt-viewer-app.c:2571 | |
363 | #: ../src/virt-viewer-app.c:2592 | |
329 | 364 | msgid "Open in full screen mode (adjusts guest resolution to fit the client)" |
330 | 365 | msgstr "" |
331 | 366 | |
332 | #: ../src/virt-viewer-app.c:2573 | |
367 | #: ../src/virt-viewer-app.c:2594 | |
333 | 368 | msgid "Customise hotkeys" |
334 | 369 | msgstr "" |
335 | 370 | |
336 | #: ../src/virt-viewer-app.c:2575 | |
371 | #: ../src/virt-viewer-app.c:2596 | |
337 | 372 | msgid "Enable kiosk mode" |
338 | 373 | msgstr "" |
339 | 374 | |
340 | #: ../src/virt-viewer-app.c:2577 | |
375 | #: ../src/virt-viewer-app.c:2598 | |
341 | 376 | msgid "Quit on given condition in kiosk mode" |
342 | 377 | msgstr "" |
343 | 378 | |
344 | #: ../src/virt-viewer-app.c:2577 | |
379 | #: ../src/virt-viewer-app.c:2598 | |
345 | 380 | msgid "<never|on-disconnect>" |
346 | 381 | msgstr "" |
347 | 382 | |
348 | #: ../src/virt-viewer-app.c:2579 | |
383 | #: ../src/virt-viewer-app.c:2600 | |
349 | 384 | msgid "Display verbose information" |
350 | 385 | msgstr "" |
351 | 386 | |
352 | #: ../src/virt-viewer-app.c:2581 | |
387 | #: ../src/virt-viewer-app.c:2602 | |
353 | 388 | msgid "Display debugging information" |
354 | 389 | msgstr "" |
355 | 390 | |
384 | 419 | |
385 | 420 | #: ../src/resources/ui/virt-viewer-auth.ui.h:4 |
386 | 421 | #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5 |
387 | #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1 | |
422 | #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2 | |
388 | 423 | msgid "label" |
389 | 424 | msgstr "" |
390 | 425 | |
404 | 439 | msgid "VNC does not provide GUID" |
405 | 440 | msgstr "" |
406 | 441 | |
407 | #: ../src/virt-viewer-file-transfer-dialog.c:122 | |
442 | #: ../src/virt-viewer-file-transfer-dialog.c:128 | |
408 | 443 | msgid "File Transfers" |
409 | 444 | msgstr "" |
410 | 445 | |
411 | #: ../src/virt-viewer-file-transfer-dialog.c:145 | |
412 | #, c-format | |
413 | msgid "Transferring %d file..." | |
414 | msgid_plural "Transferring %d files..." | |
446 | #: ../src/virt-viewer-file-transfer-dialog.c:154 | |
447 | msgid "Transferring 1 file..." | |
448 | msgstr "" | |
449 | ||
450 | #: ../src/virt-viewer-file-transfer-dialog.c:156 | |
451 | #, c-format | |
452 | msgid "Transferring %d file of %d..." | |
453 | msgid_plural "Transferring %d files of %d..." | |
415 | 454 | msgstr[0] "" |
416 | 455 | msgstr[1] "" |
417 | 456 | |
418 | #: ../src/virt-viewer-file-transfer-dialog.c:203 | |
457 | #: ../src/virt-viewer-file-transfer-dialog.c:228 | |
419 | 458 | #, c-format |
420 | 459 | msgid "An error caused the following file transfers to fail:%s" |
421 | 460 | msgstr "" |
424 | 463 | msgid "Virt Viewer" |
425 | 464 | msgstr "" |
426 | 465 | |
427 | #: ../src/virt-viewer-session-spice.c:705 | |
466 | #: ../src/virt-viewer-session-spice.c:704 | |
428 | 467 | msgid "Invalid password" |
429 | 468 | msgstr "" |
430 | 469 | |
431 | 470 | #. Create the widgets |
432 | #: ../src/virt-viewer-session-spice.c:797 | |
471 | #: ../src/virt-viewer-session-spice.c:802 | |
433 | 472 | msgid "Select USB devices for redirection" |
434 | 473 | msgstr "" |
435 | 474 | |
436 | #: ../src/virt-viewer-session-spice.c:799 | |
475 | #: ../src/virt-viewer-session-spice.c:804 | |
437 | 476 | #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2 |
438 | 477 | msgid "_Close" |
439 | 478 | msgstr "" |
440 | 479 | |
441 | #: ../src/virt-viewer-session-vnc.c:156 | |
480 | #: ../src/virt-viewer-session-vnc.c:162 | |
442 | 481 | #, c-format |
443 | 482 | msgid "Unsupported authentication type %d" |
444 | 483 | msgstr "" |
445 | 484 | |
446 | 485 | #: ../src/virt-viewer-vm-connection.c:64 |
447 | msgid "No virtual machine found" | |
486 | msgid "No running virtual machine found" | |
448 | 487 | msgstr "" |
449 | 488 | |
450 | 489 | #: ../src/virt-viewer-vm-connection.c:93 |
451 | 490 | msgid "No virtual machine was chosen" |
452 | 491 | msgstr "" |
453 | 492 | |
454 | #: ../src/virt-viewer-window.c:538 | |
493 | #: ../src/virt-viewer-window.c:544 | |
455 | 494 | msgid "Ctrl+Alt+_Del" |
456 | 495 | msgstr "" |
457 | 496 | |
458 | #: ../src/virt-viewer-window.c:539 | |
497 | #: ../src/virt-viewer-window.c:545 | |
459 | 498 | msgid "Ctrl+Alt+_Backspace" |
460 | 499 | msgstr "" |
461 | 500 | |
462 | #: ../src/virt-viewer-window.c:541 | |
501 | #: ../src/virt-viewer-window.c:547 | |
463 | 502 | msgid "Ctrl+Alt+F_1" |
464 | 503 | msgstr "" |
465 | 504 | |
466 | #: ../src/virt-viewer-window.c:542 | |
505 | #: ../src/virt-viewer-window.c:548 | |
467 | 506 | msgid "Ctrl+Alt+F_2" |
468 | 507 | msgstr "" |
469 | 508 | |
470 | #: ../src/virt-viewer-window.c:543 | |
509 | #: ../src/virt-viewer-window.c:549 | |
471 | 510 | msgid "Ctrl+Alt+F_3" |
472 | 511 | msgstr "" |
473 | 512 | |
474 | #: ../src/virt-viewer-window.c:544 | |
513 | #: ../src/virt-viewer-window.c:550 | |
475 | 514 | msgid "Ctrl+Alt+F_4" |
476 | 515 | msgstr "" |
477 | 516 | |
478 | #: ../src/virt-viewer-window.c:545 | |
517 | #: ../src/virt-viewer-window.c:551 | |
479 | 518 | msgid "Ctrl+Alt+F_5" |
480 | 519 | msgstr "" |
481 | 520 | |
482 | #: ../src/virt-viewer-window.c:546 | |
521 | #: ../src/virt-viewer-window.c:552 | |
483 | 522 | msgid "Ctrl+Alt+F_6" |
484 | 523 | msgstr "" |
485 | 524 | |
486 | #: ../src/virt-viewer-window.c:547 | |
525 | #: ../src/virt-viewer-window.c:553 | |
487 | 526 | msgid "Ctrl+Alt+F_7" |
488 | 527 | msgstr "" |
489 | 528 | |
490 | #: ../src/virt-viewer-window.c:548 | |
529 | #: ../src/virt-viewer-window.c:554 | |
491 | 530 | msgid "Ctrl+Alt+F_8" |
492 | 531 | msgstr "" |
493 | 532 | |
494 | #: ../src/virt-viewer-window.c:549 | |
533 | #: ../src/virt-viewer-window.c:555 | |
495 | 534 | msgid "Ctrl+Alt+F_9" |
496 | 535 | msgstr "" |
497 | 536 | |
498 | #: ../src/virt-viewer-window.c:550 | |
537 | #: ../src/virt-viewer-window.c:556 | |
499 | 538 | msgid "Ctrl+Alt+F1_0" |
500 | 539 | msgstr "" |
501 | 540 | |
502 | #: ../src/virt-viewer-window.c:551 | |
541 | #: ../src/virt-viewer-window.c:557 | |
503 | 542 | msgid "Ctrl+Alt+F11" |
504 | 543 | msgstr "" |
505 | 544 | |
506 | #: ../src/virt-viewer-window.c:552 | |
545 | #: ../src/virt-viewer-window.c:558 | |
507 | 546 | msgid "Ctrl+Alt+F12" |
508 | 547 | msgstr "" |
509 | 548 | |
510 | #: ../src/virt-viewer-window.c:923 | |
549 | #: ../src/virt-viewer-window.c:953 | |
550 | #, c-format | |
551 | msgid "Unable to determine image format for file '%s'" | |
552 | msgstr "" | |
553 | ||
554 | #: ../src/virt-viewer-window.c:980 | |
511 | 555 | msgid "_Save" |
512 | 556 | msgstr "" |
513 | 557 | |
514 | #: ../src/virt-viewer-window.c:931 | |
515 | msgid "Screenshot" | |
516 | msgstr "" | |
517 | ||
518 | #: ../src/virt-viewer-window.c:1000 ../src/virt-viewer-window.c:1002 | |
558 | #: ../src/virt-viewer-window.c:988 | |
559 | msgid "Screenshot.png" | |
560 | msgstr "" | |
561 | ||
562 | #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064 | |
519 | 563 | msgid "Unknown" |
520 | 564 | msgstr "" |
521 | 565 | |
522 | #: ../src/virt-viewer-window.c:1075 | |
566 | #: ../src/virt-viewer-window.c:1152 | |
567 | msgid "Unable to connnect to oVirt" | |
568 | msgstr "" | |
569 | ||
570 | #: ../src/virt-viewer-window.c:1175 | |
523 | 571 | msgid "Disconnect" |
524 | 572 | msgstr "" |
525 | 573 | |
526 | #: ../src/virt-viewer-window.c:1083 ../src/virt-viewer-window.c:1084 | |
574 | #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184 | |
527 | 575 | msgid "USB device selection" |
528 | 576 | msgstr "" |
529 | 577 | |
530 | #: ../src/virt-viewer-window.c:1093 | |
578 | #: ../src/virt-viewer-window.c:1193 | |
531 | 579 | msgid "Send key combination" |
532 | 580 | msgstr "" |
533 | 581 | |
534 | #: ../src/virt-viewer-window.c:1103 ../src/virt-viewer-window.c:1104 | |
582 | #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204 | |
535 | 583 | msgid "Leave fullscreen" |
536 | 584 | msgstr "" |
537 | 585 | |
538 | #: ../src/virt-viewer-window.c:1179 | |
586 | #: ../src/virt-viewer-window.c:1279 | |
539 | 587 | msgid "Ctrl+Alt" |
540 | 588 | msgstr "" |
541 | 589 | |
542 | #: ../src/virt-viewer-window.c:1182 | |
590 | #: ../src/virt-viewer-window.c:1282 | |
543 | 591 | #, c-format |
544 | 592 | msgid "(Press %s to release pointer)" |
545 | 593 | msgstr "" |
548 | 596 | #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>" |
549 | 597 | #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer" |
550 | 598 | #. |
551 | #: ../src/virt-viewer-window.c:1193 | |
599 | #: ../src/virt-viewer-window.c:1293 | |
552 | 600 | #, c-format |
553 | 601 | msgid "%s%s%s - %s" |
554 | 602 | msgstr "" |
555 | 603 | |
556 | 604 | #. translators: <space> |
557 | #: ../src/virt-viewer-window.c:1197 | |
605 | #: ../src/virt-viewer-window.c:1297 | |
558 | 606 | msgid " " |
559 | 607 | msgstr "" |
560 | 608 | |
561 | #: ../src/virt-viewer-file.c:843 | |
609 | #: ../src/virt-viewer-file.c:862 | |
562 | 610 | #, c-format |
563 | 611 | msgid "" |
564 | 612 | "At least %s version %s is required to setup this connection, see %s for " |
565 | 613 | "details" |
566 | 614 | msgstr "" |
567 | 615 | |
568 | #: ../src/virt-viewer-file.c:851 | |
616 | #: ../src/virt-viewer-file.c:870 | |
569 | 617 | #, c-format |
570 | 618 | msgid "At least %s version %s is required to setup this connection" |
571 | 619 | msgstr "" |
572 | 620 | |
573 | #: ../src/virt-viewer.c:90 | |
621 | #: ../src/virt-viewer.c:133 | |
574 | 622 | msgid "Direct connection with no automatic tunnels" |
575 | 623 | msgstr "" |
576 | 624 | |
577 | #: ../src/virt-viewer.c:92 | |
625 | #: ../src/virt-viewer.c:135 | |
578 | 626 | msgid "Attach to the local display using libvirt" |
579 | 627 | msgstr "" |
580 | 628 | |
581 | #: ../src/virt-viewer.c:94 | |
629 | #: ../src/virt-viewer.c:137 | |
582 | 630 | msgid "Connect to hypervisor" |
583 | 631 | msgstr "" |
584 | 632 | |
585 | #: ../src/virt-viewer.c:96 | |
633 | #: ../src/virt-viewer.c:139 | |
586 | 634 | msgid "Wait for domain to start" |
587 | 635 | msgstr "" |
588 | 636 | |
589 | #: ../src/virt-viewer.c:98 | |
637 | #: ../src/virt-viewer.c:141 | |
590 | 638 | msgid "Reconnect to domain upon restart" |
591 | 639 | msgstr "" |
592 | 640 | |
593 | #: ../src/virt-viewer.c:105 | |
641 | #: ../src/virt-viewer.c:143 | |
642 | msgid "Select the virtual machine only by its name" | |
643 | msgstr "" | |
644 | ||
645 | #: ../src/virt-viewer.c:145 | |
646 | msgid "Select the virtual machine only by its id" | |
647 | msgstr "" | |
648 | ||
649 | #: ../src/virt-viewer.c:147 | |
650 | msgid "Select the virtual machine only by its uuid" | |
651 | msgstr "" | |
652 | ||
653 | #: ../src/virt-viewer.c:154 | |
594 | 654 | msgid "Virtual machine graphical console" |
595 | 655 | msgstr "" |
596 | 656 | |
597 | #: ../src/virt-viewer.c:124 | |
657 | #: ../src/virt-viewer.c:173 | |
598 | 658 | #, c-format |
599 | 659 | msgid "" |
600 | 660 | "\n" |
601 | "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n" | |
602 | "\n" | |
603 | msgstr "" | |
604 | ||
605 | #: ../src/virt-viewer.c:136 | |
661 | "Usage: %s [OPTIONS] [ID|UUID|DOMAIN-NAME]\n" | |
662 | "\n" | |
663 | msgstr "" | |
664 | ||
665 | #: ../src/virt-viewer.c:185 | |
606 | 666 | #, c-format |
607 | 667 | msgid "" |
608 | 668 | "\n" |
609 | "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n" | |
610 | "\n" | |
611 | msgstr "" | |
612 | ||
613 | #: ../src/virt-viewer.c:250 | |
669 | "No ID|UUID|DOMAIN-NAME was specified for '%s'\n" | |
670 | "\n" | |
671 | msgstr "" | |
672 | ||
673 | #: ../src/virt-viewer.c:300 | |
614 | 674 | msgid "Waiting for guest domain to re-start" |
615 | 675 | msgstr "" |
616 | 676 | |
617 | #: ../src/virt-viewer.c:496 | |
677 | #: ../src/virt-viewer.c:554 | |
618 | 678 | #, c-format |
619 | 679 | msgid "Cannot determine the graphic type for the guest %s" |
620 | 680 | msgstr "" |
621 | 681 | |
622 | #: ../src/virt-viewer.c:535 | |
682 | #: ../src/virt-viewer.c:603 | |
623 | 683 | #, c-format |
624 | 684 | msgid "Cannot determine the host for the guest %s" |
625 | 685 | msgstr "" |
626 | 686 | |
627 | #: ../src/virt-viewer.c:563 | |
687 | #: ../src/virt-viewer.c:631 | |
628 | 688 | #, c-format |
629 | 689 | msgid "Guest '%s' is not reachable" |
630 | 690 | msgstr "" |
631 | 691 | |
632 | #: ../src/virt-viewer.c:787 | |
692 | #: ../src/virt-viewer.c:860 | |
633 | 693 | #, c-format |
634 | 694 | msgid "Virtual machine %s is not running" |
635 | 695 | msgstr "" |
636 | 696 | |
637 | #: ../src/virt-viewer.c:810 | |
697 | #: ../src/virt-viewer.c:884 | |
638 | 698 | msgid "Waiting for libvirt to start" |
639 | 699 | msgstr "" |
640 | 700 | |
641 | #: ../src/virt-viewer.c:814 | |
701 | #: ../src/virt-viewer.c:888 | |
642 | 702 | msgid "Finding guest domain" |
643 | 703 | msgstr "" |
644 | 704 | |
645 | #: ../src/virt-viewer.c:818 | |
705 | #: ../src/virt-viewer.c:892 | |
646 | 706 | msgid "Waiting for guest domain to be created" |
647 | 707 | msgstr "" |
648 | 708 | |
649 | #: ../src/virt-viewer.c:840 | |
709 | #: ../src/virt-viewer.c:918 | |
650 | 710 | msgid "Checking guest domain status" |
651 | 711 | msgstr "" |
652 | 712 | |
653 | #: ../src/virt-viewer.c:843 | |
713 | #: ../src/virt-viewer.c:921 | |
654 | 714 | msgid "Cannot get guest state" |
655 | 715 | msgstr "" |
656 | 716 | |
657 | #: ../src/virt-viewer.c:849 | |
717 | #: ../src/virt-viewer.c:927 | |
658 | 718 | msgid "Waiting for guest domain to start" |
659 | 719 | msgstr "" |
660 | 720 | |
661 | #: ../src/virt-viewer.c:953 | |
721 | #: ../src/virt-viewer.c:1040 | |
662 | 722 | #, c-format |
663 | 723 | msgid "Unable to connect to libvirt with URI: %s." |
664 | 724 | msgstr "" |
665 | 725 | |
666 | #: ../src/virt-viewer.c:954 | |
726 | #: ../src/virt-viewer.c:1041 | |
667 | 727 | msgid "[none]" |
668 | 728 | msgstr "" |
669 | 729 | |
670 | #: ../src/virt-viewer.c:961 | |
730 | #: ../src/virt-viewer.c:1048 | |
671 | 731 | msgid "Authentication failed." |
672 | 732 | msgstr "" |
673 | 733 | |
674 | #: ../src/virt-viewer.c:1021 | |
734 | #: ../src/virt-viewer.c:1108 | |
675 | 735 | msgid "Failed to connect: " |
676 | 736 | msgstr "" |
677 | 737 | |
703 | 763 | msgstr "" |
704 | 764 | |
705 | 765 | #: ../src/resources/ui/virt-viewer.ui.h:6 |
766 | msgid "_Change CD" | |
767 | msgstr "" | |
768 | ||
769 | #: ../src/resources/ui/virt-viewer.ui.h:7 | |
706 | 770 | msgid "_Preferences" |
707 | 771 | msgstr "" |
708 | 772 | |
709 | #: ../src/resources/ui/virt-viewer.ui.h:7 | |
773 | #: ../src/resources/ui/virt-viewer.ui.h:8 | |
710 | 774 | msgid "_Quit" |
711 | 775 | msgstr "" |
712 | 776 | |
713 | #: ../src/resources/ui/virt-viewer.ui.h:8 | |
777 | #: ../src/resources/ui/virt-viewer.ui.h:9 | |
714 | 778 | msgid "_View" |
715 | 779 | msgstr "" |
716 | 780 | |
717 | #: ../src/resources/ui/virt-viewer.ui.h:9 | |
781 | #: ../src/resources/ui/virt-viewer.ui.h:10 | |
718 | 782 | msgid "_Full screen" |
719 | 783 | msgstr "" |
720 | 784 | |
721 | #: ../src/resources/ui/virt-viewer.ui.h:10 | |
785 | #: ../src/resources/ui/virt-viewer.ui.h:11 | |
722 | 786 | msgid "_Zoom" |
723 | 787 | msgstr "" |
724 | 788 | |
725 | #: ../src/resources/ui/virt-viewer.ui.h:11 | |
789 | #: ../src/resources/ui/virt-viewer.ui.h:12 | |
726 | 790 | msgid "Zoom _In" |
727 | 791 | msgstr "" |
728 | 792 | |
729 | #: ../src/resources/ui/virt-viewer.ui.h:12 | |
793 | #: ../src/resources/ui/virt-viewer.ui.h:13 | |
730 | 794 | msgid "Zoom _Out" |
731 | 795 | msgstr "" |
732 | 796 | |
733 | #: ../src/resources/ui/virt-viewer.ui.h:13 | |
797 | #: ../src/resources/ui/virt-viewer.ui.h:14 | |
734 | 798 | msgid "_Normal Size" |
735 | 799 | msgstr "" |
736 | 800 | |
737 | #: ../src/resources/ui/virt-viewer.ui.h:14 | |
801 | #: ../src/resources/ui/virt-viewer.ui.h:15 | |
738 | 802 | msgid "_Displays" |
739 | 803 | msgstr "" |
740 | 804 | |
741 | #: ../src/resources/ui/virt-viewer.ui.h:15 | |
805 | #: ../src/resources/ui/virt-viewer.ui.h:16 | |
742 | 806 | msgid "Release cursor" |
743 | 807 | msgstr "" |
744 | 808 | |
745 | #: ../src/resources/ui/virt-viewer.ui.h:16 | |
809 | #: ../src/resources/ui/virt-viewer.ui.h:17 | |
746 | 810 | msgid "_Send key" |
747 | 811 | msgstr "" |
748 | 812 | |
749 | #: ../src/resources/ui/virt-viewer.ui.h:17 | |
813 | #: ../src/resources/ui/virt-viewer.ui.h:18 | |
750 | 814 | msgid "_Help" |
751 | 815 | msgstr "" |
752 | 816 | |
753 | #: ../src/resources/ui/virt-viewer.ui.h:18 | |
817 | #: ../src/resources/ui/virt-viewer.ui.h:19 | |
754 | 818 | msgid "_Guest Details" |
755 | 819 | msgstr "" |
756 | 820 | |
757 | #: ../src/resources/ui/virt-viewer.ui.h:19 | |
821 | #: ../src/resources/ui/virt-viewer.ui.h:20 | |
758 | 822 | msgid "_About" |
759 | msgstr "" | |
760 | ||
761 | #: ../src/resources/ui/virt-viewer.ui.h:20 | |
762 | msgid "_Change CD" | |
763 | 823 | msgstr "" |
764 | 824 | |
765 | 825 | #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1 |
778 | 838 | msgid "Choose a virtual machine" |
779 | 839 | msgstr "" |
780 | 840 | |
781 | #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4 | |
782 | msgid "Name" | |
783 | msgstr "" | |
784 | ||
785 | 841 | #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5 |
786 | 842 | msgid "Available virtual machines" |
787 | 843 | msgstr "" |
6 | 6 | msgstr "" |
7 | 7 | "Project-Id-Version: PACKAGE VERSION\n" |
8 | 8 | "Report-Msgid-Bugs-To: \n" |
9 | "POT-Creation-Date: 2016-11-24 13:55+0000\n" | |
9 | "POT-Creation-Date: 2017-12-04 16:36+0000\n" | |
10 | 10 | "PO-Revision-Date: \n" |
11 | 11 | "Last-Translator: \n" |
12 | 12 | "Language-Team: Amharic\n" |
43 | 43 | msgid "Virt-Viewer connection file" |
44 | 44 | msgstr "" |
45 | 45 | |
46 | #: ../src/remote-viewer.c:139 | |
46 | #: ../src/remote-viewer-iso-list-dialog.c:160 | |
47 | msgid "Failed to fetch CD names" | |
48 | msgstr "" | |
49 | ||
50 | #: ../src/remote-viewer-iso-list-dialog.c:212 | |
51 | msgid "<b>Loading...</b>" | |
52 | msgstr "" | |
53 | ||
54 | #: ../src/remote-viewer-iso-list-dialog.c:285 | |
55 | msgid "Refresh" | |
56 | msgstr "" | |
57 | ||
58 | #: ../src/remote-viewer-iso-list-dialog.c:286 | |
59 | msgid "Close" | |
60 | msgstr "" | |
61 | ||
62 | #: ../src/remote-viewer-iso-list-dialog.c:306 | |
63 | msgid "Unspecified error" | |
64 | msgstr "" | |
65 | ||
66 | #: ../src/remote-viewer-iso-list-dialog.c:328 | |
67 | msgid "Failed to change CD" | |
68 | msgstr "" | |
69 | ||
70 | #: ../src/remote-viewer-iso-list-dialog.c:380 | |
71 | msgid "Change CD" | |
72 | msgstr "" | |
73 | ||
74 | #: ../src/remote-viewer.c:118 | |
47 | 75 | msgid "Set window title" |
48 | 76 | msgstr "" |
49 | 77 | |
50 | #: ../src/remote-viewer.c:142 | |
51 | msgid "Open connection using Spice controller communication" | |
78 | #: ../src/remote-viewer.c:125 | |
79 | msgid "Remote viewer client" | |
52 | 80 | msgstr "" |
53 | 81 | |
54 | 82 | #: ../src/remote-viewer.c:150 |
55 | msgid "Remote viewer client" | |
56 | msgstr "" | |
57 | ||
58 | #: ../src/remote-viewer.c:175 | |
59 | 83 | #, c-format |
60 | 84 | msgid "" |
61 | 85 | "\n" |
63 | 87 | "\n" |
64 | 88 | msgstr "" |
65 | 89 | |
66 | #: ../src/remote-viewer.c:187 | |
67 | #, c-format | |
68 | msgid "" | |
69 | "\n" | |
70 | "Error: extra arguments given while using Spice controller\n" | |
71 | "\n" | |
72 | msgstr "" | |
73 | ||
74 | #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152 | |
90 | #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202 | |
75 | 91 | #, c-format |
76 | 92 | msgid "Run '%s --help' to see a full list of available command line options\n" |
77 | 93 | msgstr "" |
78 | 94 | |
79 | #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183 | |
95 | #: ../src/remote-viewer.c:435 | |
96 | msgid "failed to parse ovirt uri" | |
97 | msgstr "" | |
98 | ||
99 | #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101 | |
100 | msgid "Authentication was cancelled" | |
101 | msgstr "" | |
102 | ||
103 | #: ../src/remote-viewer.c:480 | |
104 | #, c-format | |
105 | msgid "oVirt VM %s is not running" | |
106 | msgstr "" | |
107 | ||
108 | #: ../src/remote-viewer.c:494 | |
109 | #, c-format | |
110 | msgid "oVirt VM %s has no display" | |
111 | msgstr "" | |
112 | ||
113 | #: ../src/remote-viewer.c:520 | |
114 | #, c-format | |
115 | msgid "oVirt VM %s has no host information" | |
116 | msgstr "" | |
117 | ||
118 | #: ../src/remote-viewer.c:531 | |
119 | #, c-format | |
120 | msgid "oVirt VM %s has unknown display type: %d" | |
121 | msgstr "" | |
122 | ||
123 | #: ../src/remote-viewer.c:713 | |
80 | 124 | msgid "Failed to initiate connection" |
81 | 125 | msgstr "" |
82 | 126 | |
83 | #: ../src/remote-viewer.c:297 | |
84 | msgid "Display disabled by controller" | |
85 | msgstr "" | |
86 | ||
87 | #: ../src/remote-viewer.c:593 | |
88 | #, c-format | |
89 | msgid "Controller connection failed: %s" | |
90 | msgstr "" | |
91 | ||
92 | #: ../src/remote-viewer.c:848 | |
93 | msgid "failed to parse ovirt uri" | |
94 | msgstr "" | |
95 | ||
96 | #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1014 | |
97 | msgid "Authentication was cancelled" | |
98 | msgstr "" | |
99 | ||
100 | #: ../src/remote-viewer.c:893 | |
101 | #, c-format | |
102 | msgid "oVirt VM %s is not running" | |
103 | msgstr "" | |
104 | ||
105 | #: ../src/remote-viewer.c:907 | |
106 | #, c-format | |
107 | msgid "oVirt VM %s has no display" | |
108 | msgstr "" | |
109 | ||
110 | #: ../src/remote-viewer.c:933 | |
111 | #, c-format | |
112 | msgid "oVirt VM %s has no host information" | |
113 | msgstr "" | |
114 | ||
115 | #: ../src/remote-viewer.c:944 | |
116 | #, c-format | |
117 | msgid "oVirt VM %s has unknown display type: %d" | |
118 | msgstr "" | |
119 | ||
120 | #: ../src/remote-viewer.c:1115 | |
121 | msgid "Setting up Spice session..." | |
122 | msgstr "" | |
123 | ||
124 | #: ../src/remote-viewer.c:1123 | |
127 | #: ../src/remote-viewer.c:742 | |
125 | 128 | msgid "No connection was chosen" |
126 | 129 | msgstr "" |
127 | 130 | |
128 | #: ../src/remote-viewer.c:1141 | |
131 | #: ../src/remote-viewer.c:759 | |
132 | msgid "Failed to read stdin: " | |
133 | msgstr "" | |
134 | ||
135 | #: ../src/remote-viewer.c:776 | |
129 | 136 | #, c-format |
130 | 137 | msgid "Invalid file %s: " |
131 | 138 | msgstr "" |
132 | 139 | |
133 | #: ../src/remote-viewer.c:1149 | |
140 | #: ../src/remote-viewer.c:786 | |
134 | 141 | msgid "Cannot determine the connection type from URI" |
135 | 142 | msgstr "" |
136 | 143 | |
137 | #: ../src/remote-viewer.c:1155 | |
144 | #: ../src/remote-viewer.c:792 | |
138 | 145 | msgid "Couldn't open oVirt session: " |
146 | msgstr "" | |
147 | ||
148 | #: ../src/remote-viewer.c:815 | |
149 | #, c-format | |
150 | msgid "Unable to connect: %s" | |
139 | 151 | msgstr "" |
140 | 152 | |
141 | 153 | #. |
162 | 174 | msgstr "" |
163 | 175 | |
164 | 176 | #: ../src/resources/ui/remote-viewer-connect.ui.h:5 |
165 | #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:922 | |
177 | #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979 | |
166 | 178 | #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2 |
179 | #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1 | |
167 | 180 | msgid "_Cancel" |
168 | 181 | msgstr "" |
169 | 182 | |
170 | 183 | #: ../src/resources/ui/remote-viewer-connect.ui.h:6 |
171 | 184 | #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3 |
172 | 185 | msgid "C_onnect" |
186 | msgstr "" | |
187 | ||
188 | #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1 | |
189 | msgid "Loading..." | |
190 | msgstr "" | |
191 | ||
192 | #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2 | |
193 | msgid "Select ISO" | |
194 | msgstr "" | |
195 | ||
196 | #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3 | |
197 | msgid "Selected" | |
198 | msgstr "" | |
199 | ||
200 | #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4 | |
201 | #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4 | |
202 | msgid "Name" | |
173 | 203 | msgstr "" |
174 | 204 | |
175 | 205 | #: ../src/resources/ui/virt-viewer-about.ui.h:1 |
244 | 274 | msgid "Unsupported graphic type '%s'" |
245 | 275 | msgstr "" |
246 | 276 | |
247 | #: ../src/virt-viewer-app.c:1145 | |
277 | #: ../src/virt-viewer-app.c:1146 | |
248 | 278 | msgid "Connect to ssh failed." |
249 | 279 | msgstr "" |
250 | 280 | |
251 | #: ../src/virt-viewer-app.c:1147 | |
252 | msgid "Can't connect to channel, SSH only supported." | |
253 | msgstr "" | |
254 | ||
255 | #: ../src/virt-viewer-app.c:1159 | |
281 | #: ../src/virt-viewer-app.c:1161 | |
282 | #, c-format | |
283 | msgid "Can't connect to channel: %s" | |
284 | msgstr "" | |
285 | ||
286 | #: ../src/virt-viewer-app.c:1163 | |
287 | msgid "only SSH or unix socket connection supported." | |
288 | msgstr "" | |
289 | ||
290 | #: ../src/virt-viewer-app.c:1176 | |
256 | 291 | msgid "Connect to channel unsupported." |
257 | 292 | msgstr "" |
258 | 293 | |
259 | #: ../src/virt-viewer-app.c:1221 | |
294 | #: ../src/virt-viewer-app.c:1238 | |
260 | 295 | msgid "Display can only be attached through libvirt with --attach" |
261 | 296 | msgstr "" |
262 | 297 | |
263 | #: ../src/virt-viewer-app.c:1244 | |
298 | #: ../src/virt-viewer-app.c:1263 | |
264 | 299 | msgid "Connecting to graphic server" |
265 | 300 | msgstr "" |
266 | 301 | |
267 | #: ../src/virt-viewer-app.c:1343 | |
302 | #: ../src/virt-viewer-app.c:1362 | |
268 | 303 | msgid "Guest domain has shutdown" |
269 | 304 | msgstr "" |
270 | 305 | |
271 | #: ../src/virt-viewer-app.c:1404 | |
306 | #: ../src/virt-viewer-app.c:1423 | |
272 | 307 | msgid "Connected to graphic server" |
273 | 308 | msgstr "" |
274 | 309 | |
275 | #: ../src/virt-viewer-app.c:1431 | |
310 | #: ../src/virt-viewer-app.c:1452 | |
276 | 311 | #, c-format |
277 | 312 | msgid "Unable to connect to the graphic server %s" |
278 | 313 | msgstr "" |
279 | 314 | |
280 | #: ../src/virt-viewer-app.c:1457 | |
315 | #: ../src/virt-viewer-app.c:1478 | |
281 | 316 | #, c-format |
282 | 317 | msgid "Unable to authenticate with remote desktop server at %s: %s\n" |
283 | 318 | msgstr "" |
284 | 319 | |
285 | #: ../src/virt-viewer-app.c:1471 | |
320 | #: ../src/virt-viewer-app.c:1492 | |
286 | 321 | #, c-format |
287 | 322 | msgid "Unable to authenticate with remote desktop server: %s" |
288 | 323 | msgstr "" |
289 | 324 | |
290 | #: ../src/virt-viewer-app.c:1479 | |
325 | #: ../src/virt-viewer-app.c:1500 | |
291 | 326 | #, c-format |
292 | 327 | msgid "USB redirection error: %s" |
293 | 328 | msgstr "" |
294 | 329 | |
295 | #: ../src/virt-viewer-app.c:1813 | |
330 | #: ../src/virt-viewer-app.c:1834 | |
296 | 331 | #, c-format |
297 | 332 | msgid "Zoom level must be within %d-%d\n" |
298 | 333 | msgstr "" |
299 | 334 | |
300 | #: ../src/virt-viewer-app.c:1866 | |
335 | #: ../src/virt-viewer-app.c:1887 | |
301 | 336 | #, c-format |
302 | 337 | msgid "%s\n" |
303 | 338 | msgstr "" |
304 | 339 | |
305 | #: ../src/virt-viewer-app.c:1876 | |
340 | #: ../src/virt-viewer-app.c:1897 | |
306 | 341 | #, c-format |
307 | 342 | msgid "%s version %s" |
308 | 343 | msgstr "" |
309 | 344 | |
310 | #: ../src/virt-viewer-app.c:2300 | |
345 | #: ../src/virt-viewer-app.c:2321 | |
311 | 346 | #, c-format |
312 | 347 | msgid "Display _%d" |
313 | 348 | msgstr "" |
314 | 349 | |
315 | #: ../src/virt-viewer-app.c:2556 | |
350 | #: ../src/virt-viewer-app.c:2577 | |
316 | 351 | #, c-format |
317 | 352 | msgid "Invalid kiosk-quit argument: %s" |
318 | 353 | msgstr "" |
319 | 354 | |
320 | #: ../src/virt-viewer-app.c:2567 | |
355 | #: ../src/virt-viewer-app.c:2588 | |
321 | 356 | msgid "Display version information" |
322 | 357 | msgstr "" |
323 | 358 | |
324 | #: ../src/virt-viewer-app.c:2569 | |
359 | #: ../src/virt-viewer-app.c:2590 | |
325 | 360 | msgid "Zoom level of window, in percentage" |
326 | 361 | msgstr "" |
327 | 362 | |
328 | #: ../src/virt-viewer-app.c:2571 | |
363 | #: ../src/virt-viewer-app.c:2592 | |
329 | 364 | msgid "Open in full screen mode (adjusts guest resolution to fit the client)" |
330 | 365 | msgstr "" |
331 | 366 | |
332 | #: ../src/virt-viewer-app.c:2573 | |
367 | #: ../src/virt-viewer-app.c:2594 | |
333 | 368 | msgid "Customise hotkeys" |
334 | 369 | msgstr "" |
335 | 370 | |
336 | #: ../src/virt-viewer-app.c:2575 | |
371 | #: ../src/virt-viewer-app.c:2596 | |
337 | 372 | msgid "Enable kiosk mode" |
338 | 373 | msgstr "" |
339 | 374 | |
340 | #: ../src/virt-viewer-app.c:2577 | |
375 | #: ../src/virt-viewer-app.c:2598 | |
341 | 376 | msgid "Quit on given condition in kiosk mode" |
342 | 377 | msgstr "" |
343 | 378 | |
344 | #: ../src/virt-viewer-app.c:2577 | |
379 | #: ../src/virt-viewer-app.c:2598 | |
345 | 380 | msgid "<never|on-disconnect>" |
346 | 381 | msgstr "" |
347 | 382 | |
348 | #: ../src/virt-viewer-app.c:2579 | |
383 | #: ../src/virt-viewer-app.c:2600 | |
349 | 384 | msgid "Display verbose information" |
350 | 385 | msgstr "" |
351 | 386 | |
352 | #: ../src/virt-viewer-app.c:2581 | |
387 | #: ../src/virt-viewer-app.c:2602 | |
353 | 388 | msgid "Display debugging information" |
354 | 389 | msgstr "" |
355 | 390 | |
384 | 419 | |
385 | 420 | #: ../src/resources/ui/virt-viewer-auth.ui.h:4 |
386 | 421 | #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5 |
387 | #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1 | |
422 | #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2 | |
388 | 423 | msgid "label" |
389 | 424 | msgstr "" |
390 | 425 | |
404 | 439 | msgid "VNC does not provide GUID" |
405 | 440 | msgstr "" |
406 | 441 | |
407 | #: ../src/virt-viewer-file-transfer-dialog.c:122 | |
442 | #: ../src/virt-viewer-file-transfer-dialog.c:128 | |
408 | 443 | msgid "File Transfers" |
409 | 444 | msgstr "" |
410 | 445 | |
411 | #: ../src/virt-viewer-file-transfer-dialog.c:145 | |
412 | #, c-format | |
413 | msgid "Transferring %d file..." | |
414 | msgid_plural "Transferring %d files..." | |
446 | #: ../src/virt-viewer-file-transfer-dialog.c:154 | |
447 | msgid "Transferring 1 file..." | |
448 | msgstr "" | |
449 | ||
450 | #: ../src/virt-viewer-file-transfer-dialog.c:156 | |
451 | #, c-format | |
452 | msgid "Transferring %d file of %d..." | |
453 | msgid_plural "Transferring %d files of %d..." | |
415 | 454 | msgstr[0] "" |
416 | 455 | msgstr[1] "" |
417 | 456 | |
418 | #: ../src/virt-viewer-file-transfer-dialog.c:203 | |
457 | #: ../src/virt-viewer-file-transfer-dialog.c:228 | |
419 | 458 | #, c-format |
420 | 459 | msgid "An error caused the following file transfers to fail:%s" |
421 | 460 | msgstr "" |
424 | 463 | msgid "Virt Viewer" |
425 | 464 | msgstr "" |
426 | 465 | |
427 | #: ../src/virt-viewer-session-spice.c:705 | |
466 | #: ../src/virt-viewer-session-spice.c:704 | |
428 | 467 | msgid "Invalid password" |
429 | 468 | msgstr "" |
430 | 469 | |
431 | 470 | #. Create the widgets |
432 | #: ../src/virt-viewer-session-spice.c:797 | |
471 | #: ../src/virt-viewer-session-spice.c:802 | |
433 | 472 | msgid "Select USB devices for redirection" |
434 | 473 | msgstr "" |
435 | 474 | |
436 | #: ../src/virt-viewer-session-spice.c:799 | |
475 | #: ../src/virt-viewer-session-spice.c:804 |