Codebase list virt-viewer / 62b4ac8
New upstream version 7.0 Guido Günther 5 years ago
153 changed file(s) with 25280 addition(s) and 19986 deletion(s). Raw diff Collapse all Expand all
1414 Christophe Fergeau <cfergeau@redhat.com>
1515 Christophe de Dinechin <cdupontd@redhat.com>
1616 Daniel P. Berrange <berrange@redhat.com>
17 Daniel P. Berrangé <berrange@redhat.com>
1718 Dave Allan <dallan@redhat.com>
1819 Doug Goldstein <cardoe@cardoe.com>
1920 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
0165 2017-08-15 Daniel P. Berrange <berrange@redhat.com>
166
167 Post release version bump to 7.0
1168
2169 Add NEWS for 6.0 release
3170
0 # Makefile.in generated by automake 1.15 from Makefile.am.
0 # Makefile.in generated by automake 1.15.1 from Makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2014 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
8888 host_triplet = @host@
8989 subdir = .
9090 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
9596 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
9697 $(ACLOCAL_M4)
9798 DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
324325 SED = @SED@
325326 SET_MAKE = @SET_MAKE@
326327 SHELL = @SHELL@
327 SPICE_CONTROLLER_CFLAGS = @SPICE_CONTROLLER_CFLAGS@
328 SPICE_CONTROLLER_LIBS = @SPICE_CONTROLLER_LIBS@
329328 SPICE_GTK_CFLAGS = @SPICE_GTK_CFLAGS@
330329 SPICE_GTK_LIBS = @SPICE_GTK_LIBS@
331330 SPICE_GTK_REQUIRED = @SPICE_GTK_REQUIRED@
00 Virt Viewer News
11 ================
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
215
316 6.0: Aug 15, 2017
417 -----------------
1414
1515 https://wiki.gnome.org/Projects/gtk-vnc
1616
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
1818 display of the SPICE protocol, which is available from:
1919
2020 https://www.spice-space.org/download.html
3434 try_compiler_flags="$try_compiler_flags -Wextra -Wshadow -Wcast-align -Wwrite-strings -Waggregate-return"
3535 # Removed -Wstrict-prototypes to avoid GTK bug
3636 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"
3739 if test "$enable_compile_warnings" = "error" ; then
3840 try_compiler_flags="$try_compiler_flags -Werror"
3941 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.
33
44 # This file is free software; the Free Software Foundation
55 # gives unlimited permission to copy and/or distribute it,
4646 #
4747 # Modified to require ngettext
4848 # Matthias Clasen <mclasen@redhat.com> 08/06/2004
49 #
49
50 # Increment this whenever this file is changed.
51 #serial 1
52
5053 # We need this here as well, since someone might use autoconf-2.5x
5154 # to configure GLib then an older version to configure a package
5255 # using AM_GLIB_GNU_GETTEXT
503506 fi])
504507
505508
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
696509 # nls.m4 serial 5 (gettext-0.18)
697510 dnl Copyright (C) 1995-2003, 2005-2006, 2008-2014, 2016 Free Software
698511 dnl Foundation, Inc.
1070883 [AC_DEFINE([HAVE_][$1], 1, [Enable ]m4_tolower([$1])[ support])])
1071884 ])dnl PKG_HAVE_DEFINE_WITH_MODULES
1072885
1073 # Copyright (C) 2002-2014 Free Software Foundation, Inc.
886 # Copyright (C) 2002-2017 Free Software Foundation, Inc.
1074887 #
1075888 # This file is free software; the Free Software Foundation
1076889 # gives unlimited permission to copy and/or distribute it,
1085898 [am__api_version='1.15'
1086899 dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
1087900 dnl require some minimum version. Point them to the right macro.
1088 m4_if([$1], [1.15], [],
901 m4_if([$1], [1.15.1], [],
1089902 [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
1090903 ])
1091904
1101914 # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
1102915 # This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
1103916 AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
1104 [AM_AUTOMAKE_VERSION([1.15])dnl
917 [AM_AUTOMAKE_VERSION([1.15.1])dnl
1105918 m4_ifndef([AC_AUTOCONF_VERSION],
1106919 [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
1107920 _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
1108921
1109922 # AM_AUX_DIR_EXPAND -*- Autoconf -*-
1110923
1111 # Copyright (C) 2001-2014 Free Software Foundation, Inc.
924 # Copyright (C) 2001-2017 Free Software Foundation, Inc.
1112925 #
1113926 # This file is free software; the Free Software Foundation
1114927 # gives unlimited permission to copy and/or distribute it,
1160973
1161974 # AM_CONDITIONAL -*- Autoconf -*-
1162975
1163 # Copyright (C) 1997-2014 Free Software Foundation, Inc.
976 # Copyright (C) 1997-2017 Free Software Foundation, Inc.
1164977 #
1165978 # This file is free software; the Free Software Foundation
1166979 # gives unlimited permission to copy and/or distribute it,
11911004 Usually this means the macro was only invoked conditionally.]])
11921005 fi])])
11931006
1194 # Copyright (C) 1999-2014 Free Software Foundation, Inc.
1007 # Copyright (C) 1999-2017 Free Software Foundation, Inc.
11951008 #
11961009 # This file is free software; the Free Software Foundation
11971010 # gives unlimited permission to copy and/or distribute it,
13821195
13831196 # Generate code to set up dependency tracking. -*- Autoconf -*-
13841197
1385 # Copyright (C) 1999-2014 Free Software Foundation, Inc.
1198 # Copyright (C) 1999-2017 Free Software Foundation, Inc.
13861199 #
13871200 # This file is free software; the Free Software Foundation
13881201 # gives unlimited permission to copy and/or distribute it,
14581271
14591272 # Do all the work for Automake. -*- Autoconf -*-
14601273
1461 # Copyright (C) 1996-2014 Free Software Foundation, Inc.
1274 # Copyright (C) 1996-2017 Free Software Foundation, Inc.
14621275 #
14631276 # This file is free software; the Free Software Foundation
14641277 # gives unlimited permission to copy and/or distribute it,
16551468 done
16561469 echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
16571470
1658 # Copyright (C) 2001-2014 Free Software Foundation, Inc.
1471 # Copyright (C) 2001-2017 Free Software Foundation, Inc.
16591472 #
16601473 # This file is free software; the Free Software Foundation
16611474 # gives unlimited permission to copy and/or distribute it,
16761489 fi
16771490 AC_SUBST([install_sh])])
16781491
1679 # Copyright (C) 2003-2014 Free Software Foundation, Inc.
1492 # Copyright (C) 2003-2017 Free Software Foundation, Inc.
16801493 #
16811494 # This file is free software; the Free Software Foundation
16821495 # gives unlimited permission to copy and/or distribute it,
16971510
16981511 # Check to see how 'make' treats includes. -*- Autoconf -*-
16991512
1700 # Copyright (C) 2001-2014 Free Software Foundation, Inc.
1513 # Copyright (C) 2001-2017 Free Software Foundation, Inc.
17011514 #
17021515 # This file is free software; the Free Software Foundation
17031516 # gives unlimited permission to copy and/or distribute it,
17471560
17481561 # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*-
17491562
1750 # Copyright (C) 1997-2014 Free Software Foundation, Inc.
1563 # Copyright (C) 1997-2017 Free Software Foundation, Inc.
17511564 #
17521565 # This file is free software; the Free Software Foundation
17531566 # gives unlimited permission to copy and/or distribute it,
17861599
17871600 # Helper functions for option handling. -*- Autoconf -*-
17881601
1789 # Copyright (C) 2001-2014 Free Software Foundation, Inc.
1602 # Copyright (C) 2001-2017 Free Software Foundation, Inc.
17901603 #
17911604 # This file is free software; the Free Software Foundation
17921605 # gives unlimited permission to copy and/or distribute it,
18151628 AC_DEFUN([_AM_IF_OPTION],
18161629 [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
18171630
1818 # Copyright (C) 1999-2014 Free Software Foundation, Inc.
1631 # Copyright (C) 1999-2017 Free Software Foundation, Inc.
18191632 #
18201633 # This file is free software; the Free Software Foundation
18211634 # gives unlimited permission to copy and/or distribute it,
18621675 # For backward compatibility.
18631676 AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])])
18641677
1865 # Copyright (C) 2001-2014 Free Software Foundation, Inc.
1678 # Copyright (C) 2001-2017 Free Software Foundation, Inc.
18661679 #
18671680 # This file is free software; the Free Software Foundation
18681681 # gives unlimited permission to copy and/or distribute it,
18811694
18821695 # Check to make sure that the build environment is sane. -*- Autoconf -*-
18831696
1884 # Copyright (C) 1996-2014 Free Software Foundation, Inc.
1697 # Copyright (C) 1996-2017 Free Software Foundation, Inc.
18851698 #
18861699 # This file is free software; the Free Software Foundation
18871700 # gives unlimited permission to copy and/or distribute it,
19621775 rm -f conftest.file
19631776 ])
19641777
1965 # Copyright (C) 2009-2014 Free Software Foundation, Inc.
1778 # Copyright (C) 2009-2017 Free Software Foundation, Inc.
19661779 #
19671780 # This file is free software; the Free Software Foundation
19681781 # gives unlimited permission to copy and/or distribute it,
20221835 _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
20231836 ])
20241837
2025 # Copyright (C) 2001-2014 Free Software Foundation, Inc.
1838 # Copyright (C) 2001-2017 Free Software Foundation, Inc.
20261839 #
20271840 # This file is free software; the Free Software Foundation
20281841 # gives unlimited permission to copy and/or distribute it,
20501863 INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
20511864 AC_SUBST([INSTALL_STRIP_PROGRAM])])
20521865
2053 # Copyright (C) 2006-2014 Free Software Foundation, Inc.
1866 # Copyright (C) 2006-2017 Free Software Foundation, Inc.
20541867 #
20551868 # This file is free software; the Free Software Foundation
20561869 # gives unlimited permission to copy and/or distribute it,
20691882
20701883 # Check how to create a tarball. -*- Autoconf -*-
20711884
2072 # Copyright (C) 2004-2014 Free Software Foundation, Inc.
1885 # Copyright (C) 2004-2017 Free Software Foundation, Inc.
20731886 #
20741887 # This file is free software; the Free Software Foundation
20751888 # gives unlimited permission to copy and/or distribute it,
22002013 AC_SUBST([am__untar])
22012014 ]) # _AM_PROG_TAR
22022015
2016 m4_include([m4/intltool.m4])
22032017 m4_include([m4/libtool.m4])
22042018 m4_include([m4/ltoptions.m4])
22052019 m4_include([m4/ltsugar.m4])
0 #! /bin/sh
0 #!/bin/sh
11 # Wrapper for compilers which do not understand '-c -o'.
22
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.
66 # Written by Tom Tromey <tromey@cygnus.com>.
77 #
88 # This program is free software; you can redistribute it and/or modify
254254 echo "compile $scriptversion"
255255 exit $?
256256 ;;
257 cl | *[/\\]cl | cl.exe | *[/\\]cl.exe )
257 cl | *[/\\]cl | cl.exe | *[/\\]cl.exe | \
258 icl | *[/\\]icl | icl.exe | *[/\\]icl.exe )
258259 func_cl_wrapper "$@" # Doesn't return...
259260 ;;
260261 esac
341342 # eval: (add-hook 'write-file-hooks 'time-stamp)
342343 # time-stamp-start: "scriptversion="
343344 # time-stamp-format: "%:y-%02m-%02d.%02H"
344 # time-stamp-time-zone: "UTC"
345 # time-stamp-time-zone: "UTC0"
345346 # time-stamp-end: "; # UTC"
346347 # End:
0 #! /bin/sh
0 #!/bin/sh
11 # 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'
55
66 # This file is free software; you can redistribute it and/or modify it
77 # under the terms of the GNU General Public License as published by
4949 GNU config.guess ($timestamp)
5050
5151 Originally written by Per Bothner.
52 Copyright 1992-2016 Free Software Foundation, Inc.
52 Copyright 1992-2017 Free Software Foundation, Inc.
5353
5454 This is free software; see the source for copying conditions. There is NO
5555 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
258258 *:Sortix:*:*)
259259 echo ${UNAME_MACHINE}-unknown-sortix
260260 exit ;;
261 *:Redox:*:*)
262 echo ${UNAME_MACHINE}-unknown-redox
263 exit ;;
261264 alpha:OSF1:*:*)
262265 case $UNAME_RELEASE in
263266 *4.0)
836839 UNAME_PROCESSOR=`/usr/bin/uname -p`
837840 case ${UNAME_PROCESSOR} in
838841 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 ;;
842845 esac
846 echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`
843847 exit ;;
844848 i*:CYGWIN*:*)
845849 echo ${UNAME_MACHINE}-pc-cygwin
13021306 if test `echo "$UNAME_RELEASE" | sed -e 's/\..*//'` -le 10 ; then
13031307 if [ "$CC_FOR_BUILD" != no_compiler_found ]; then
13041308 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
13071311 then
13081312 case $UNAME_PROCESSOR in
13091313 i386) UNAME_PROCESSOR=x86_64 ;;
13101314 powerpc) UNAME_PROCESSOR=powerpc64 ;;
13111315 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
13121323 fi
13131324 fi
13141325 elif test "$UNAME_PROCESSOR" = i386 ; then
13331344 *:QNX:*:4*)
13341345 echo i386-pc-qnx
13351346 exit ;;
1336 NEO-?:NONSTOP_KERNEL:*:*)
1347 NEO-*:NONSTOP_KERNEL:*:*)
13371348 echo neo-tandem-nsk${UNAME_RELEASE}
13381349 exit ;;
13391350 NSE-*:NONSTOP_KERNEL:*:*)
13401351 echo nse-tandem-nsk${UNAME_RELEASE}
13411352 exit ;;
1342 NSR-?:NONSTOP_KERNEL:*:*)
1353 NSR-*:NONSTOP_KERNEL:*:*)
13431354 echo nsr-tandem-nsk${UNAME_RELEASE}
1355 exit ;;
1356 NSX-*:NONSTOP_KERNEL:*:*)
1357 echo nsx-tandem-nsk${UNAME_RELEASE}
13441358 exit ;;
13451359 *:NonStop-UX:*:*)
13461360 echo mips-compaq-nonstopux
14171431 $0: unable to guess system type
14181432
14191433 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:
14221436
14231437 http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess
14241438 and
0 #! /bin/sh
0 #!/bin/sh
11 # 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'
55
66 # This file is free software; you can redistribute it and/or modify it
77 # under the terms of the GNU General Public License as published by
6666 version="\
6767 GNU config.sub ($timestamp)
6868
69 Copyright 1992-2016 Free Software Foundation, Inc.
69 Copyright 1992-2017 Free Software Foundation, Inc.
7070
7171 This is free software; see the source for copying conditions. There is NO
7272 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
262262 | fido | fr30 | frv | ft32 \
263263 | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \
264264 | hexagon \
265 | i370 | i860 | i960 | ia64 \
265 | i370 | i860 | i960 | ia16 | ia64 \
266266 | ip2k | iq2000 \
267267 | k1om \
268268 | le32 | le64 \
300300 | open8 | or1k | or1knd | or32 \
301301 | pdp10 | pdp11 | pj | pjl \
302302 | powerpc | powerpc64 | powerpc64le | powerpcle \
303 | pru \
303304 | pyramid \
304305 | riscv32 | riscv64 \
305306 | rl78 | rx \
313314 | ubicom32 \
314315 | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \
315316 | visium \
317 | wasm32 \
316318 | we32k \
317319 | x86 | xc16x | xstormy16 | xtensa \
318320 | z8k | z80)
386388 | h8300-* | h8500-* \
387389 | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \
388390 | hexagon-* \
389 | i*86-* | i860-* | i960-* | ia64-* \
391 | i*86-* | i860-* | i960-* | ia16-* | ia64-* \
390392 | ip2k-* | iq2000-* \
391393 | k1om-* \
392394 | le32-* | le64-* \
427429 | orion-* \
428430 | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \
429431 | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \
432 | pru-* \
430433 | pyramid-* \
431434 | riscv32-* | riscv64-* \
432435 | rl78-* | romp-* | rs6000-* | rx-* \
443446 | v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \
444447 | vax-* \
445448 | visium-* \
449 | wasm32-* \
446450 | we32k-* \
447451 | x86-* | x86_64-* | xc16x-* | xps100-* \
448452 | xstormy16-* | xtensa*-* \
945949 nsr-tandem)
946950 basic_machine=nsr-tandem
947951 ;;
952 nsx-tandem)
953 basic_machine=nsx-tandem
954 ;;
948955 op50n-* | op60c-*)
949956 basic_machine=hppa1.1-oki
950957 os=-proelf
12391246 vxworks29k)
12401247 basic_machine=a29k-wrs
12411248 os=-vxworks
1249 ;;
1250 wasm32)
1251 basic_machine=wasm32-unknown
12421252 ;;
12431253 w65*)
12441254 basic_machine=w65-wdc
13941404 | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \
13951405 | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \
13961406 | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \
1397 | -chorusos* | -chorusrdb* | -cegcc* \
1407 | -chorusos* | -chorusrdb* | -cegcc* | -glidix* \
13981408 | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
13991409 | -midipix* | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \
14001410 | -linux-newlib* | -linux-musl* | -linux-uclibc* \
14061416 | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \
14071417 | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \
14081418 | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es* \
1409 | -onefs* | -tirtos* | -phoenix*)
1419 | -onefs* | -tirtos* | -phoenix* | -fuchsia* | -redox*)
14101420 # Remember, each alternative MUST END IN *, to match a version number.
14111421 ;;
14121422 -qnx*)
16351645 sparc-* | *-sun)
16361646 os=-sunos4.1.1
16371647 ;;
1648 pru-*)
1649 os=-elf
1650 ;;
16381651 *-be)
16391652 os=-beos
16401653 ;;
0 #! /bin/sh
0 #!/bin/sh
11 # depcomp - compile a program generating dependencies as side-effects
22
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.
66
77 # This program is free software; you can redistribute it and/or modify
88 # it under the terms of the GNU General Public License as published by
785785 # eval: (add-hook 'write-file-hooks 'time-stamp)
786786 # time-stamp-start: "scriptversion="
787787 # time-stamp-format: "%:y-%02m-%02d.%02H"
788 # time-stamp-time-zone: "UTC"
788 # time-stamp-time-zone: "UTC0"
789789 # time-stamp-end: "; # UTC"
790790 # End:
00 #!/bin/sh
11 # install - install a program, script, or datafile
22
3 scriptversion=2013-12-25.23; # UTC
3 scriptversion=2016-01-11.22; # UTC
44
55 # This originates from X11R5 (mit/util/scripts/install.sh), which was
66 # later released in X11R6 (xc/config/util/install.sh) with the
495495 # eval: (add-hook 'write-file-hooks 'time-stamp)
496496 # time-stamp-start: "scriptversion="
497497 # time-stamp-format: "%:y-%02m-%02d.%02H"
498 # time-stamp-time-zone: "UTC"
498 # time-stamp-time-zone: "UTC0"
499499 # time-stamp-end: "; # UTC"
500500 # End:
72717271 # -tp=* Portland pgcc target processor selection
72727272 # --sysroot=* for sysroot support
72737273 # -O*, -g*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization
7274 # -specs=* GCC specs files
72747275 # -stdlib=* select c++ std lib with clang
72757276 -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \
72767277 -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=*)
72787280 func_quote_for_eval "$arg"
72797281 arg=$func_quote_for_eval_result
72807282 func_append compile_command " $arg"
0 #! /bin/sh
0 #!/bin/sh
11 # Common wrapper for a few potentially missing GNU programs.
22
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.
66 # Originally written by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996.
77
88 # This program is free software; you can redistribute it and/or modify
209209 # eval: (add-hook 'write-file-hooks 'time-stamp)
210210 # time-stamp-start: "scriptversion="
211211 # time-stamp-format: "%:y-%02m-%02d.%02H"
212 # time-stamp-time-zone: "UTC"
212 # time-stamp-time-zone: "UTC0"
213213 # time-stamp-end: "; # UTC"
214214 # End:
0 #! /bin/sh
0 #!/bin/sh
11 # test-driver - basic testsuite driver script.
22
3 scriptversion=2013-07-13.22; # UTC
3 scriptversion=2016-01-11.22; # UTC
44
5 # Copyright (C) 2011-2014 Free Software Foundation, Inc.
5 # Copyright (C) 2011-2017 Free Software Foundation, Inc.
66 #
77 # This program is free software; you can redistribute it and/or modify
88 # it under the terms of the GNU General Public License as published by
142142 # eval: (add-hook 'write-file-hooks 'time-stamp)
143143 # time-stamp-start: "scriptversion="
144144 # time-stamp-format: "%:y-%02m-%02d.%02H"
145 # time-stamp-time-zone: "UTC"
145 # time-stamp-time-zone: "UTC0"
146146 # time-stamp-end: "; # UTC"
147147 # End:
5858 /* Have libgovirt? */
5959 #undef HAVE_OVIRT
6060
61 /* Define to 1 if you have the `ovirt_api_search_vms' function. */
62 #undef HAVE_OVIRT_API_SEARCH_VMS
63
6164 /* Have rest_proxy_auth_cancel and OVIRT_REST_CALL_ERROR_CANCELLED? */
6265 #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
6378
6479 /* Define to 1 if you have the `socketpair' function. */
6580 #undef HAVE_SOCKETPAIR
00 #! /bin/sh
11 # 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.
33 #
44 #
55 # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
586586 # Identity of this package.
587587 PACKAGE_NAME='virt-viewer'
588588 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'
591591 PACKAGE_BUGREPORT=''
592592 PACKAGE_URL=''
593593
646646 HAVE_SPICE_GTK_TRUE
647647 SPICE_PROTOCOL_LIBS
648648 SPICE_PROTOCOL_CFLAGS
649 SPICE_CONTROLLER_LIBS
650 SPICE_CONTROLLER_CFLAGS
651649 SPICE_GTK_LIBS
652650 SPICE_GTK_CFLAGS
653651 HAVE_GTK_VNC_FALSE
896894 GTK_VNC_LIBS
897895 SPICE_GTK_CFLAGS
898896 SPICE_GTK_LIBS
899 SPICE_CONTROLLER_CFLAGS
900 SPICE_CONTROLLER_LIBS
901897 SPICE_PROTOCOL_CFLAGS
902898 SPICE_PROTOCOL_LIBS
903899 OVIRT_CFLAGS
14421438 # Omit some internal or obsolete options to make the list less imposing.
14431439 # This message is too long to be a string in the A/UX 3.1 sh.
14441440 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.
14461442
14471443 Usage: $0 [OPTION]... [VAR=VALUE]...
14481444
15121508
15131509 if test -n "$ac_init_help"; then
15141510 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:";;
15161512 esac
15171513 cat <<\_ACEOF
15181514
15951591 C compiler flags for SPICE_GTK, overriding pkg-config
15961592 SPICE_GTK_LIBS
15971593 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
16021594 SPICE_PROTOCOL_CFLAGS
16031595 C compiler flags for SPICE_PROTOCOL, overriding pkg-config
16041596 SPICE_PROTOCOL_LIBS
16731665 test -n "$ac_init_help" && exit $ac_status
16741666 if $ac_init_version; then
16751667 cat <<\_ACEOF
1676 virt-viewer configure 6.0
1668 virt-viewer configure 7.0
16771669 generated by GNU Autoconf 2.69
16781670
16791671 Copyright (C) 2012 Free Software Foundation, Inc.
20382030 This file contains any messages produced by compilers while
20392031 running configure, to aid debugging if configure makes a mistake.
20402032
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
20422034 generated by GNU Autoconf 2.69. Invocation command line was
20432035
20442036 $ $0 $@
29052897
29062898 # Define the identity of the package.
29072899 PACKAGE='virt-viewer'
2908 VERSION='6.0'
2900 VERSION='7.0'
29092901
29102902
29112903 cat >>confdefs.h <<_ACEOF
31243116 LIBVIRT_REQUIRED="0.10.0"
31253117 LIBVIRT_GLIB_REQUIRED="0.1.8"
31263118 GTK_VNC_REQUIRED="0.4.0"
3127 SPICE_GTK_REQUIRED="0.33"
3119 SPICE_GTK_REQUIRED="0.35"
31283120 SPICE_PROTOCOL_REQUIRED="0.12.7"
31293121 GOVIRT_REQUIRED="0.3.2"
31303122
1239812390 try_compiler_flags="$try_compiler_flags -Wextra -Wshadow -Wcast-align -Wwrite-strings -Waggregate-return"
1239912391 # Removed -Wstrict-prototypes to avoid GTK bug
1240012392 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"
1240112395 if test "$enable_compile_warnings" = "error" ; then
1240212396 try_compiler_flags="$try_compiler_flags -Werror"
1240312397 fi
1456814562 if test -n "$PKG_CONFIG" && \
1456914563 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"spice-client-gtk-3.0 >= \$SPICE_GTK_REQUIRED
1457014564 spice-client-glib-2.0 >= \$SPICE_GTK_REQUIRED
14571 spice-controller spice-protocol >= \$SPICE_PROTOCOL_REQUIRED\""; } >&5
14565 spice-protocol >= \$SPICE_PROTOCOL_REQUIRED\""; } >&5
1457214566 ($PKG_CONFIG --exists --print-errors "spice-client-gtk-3.0 >= $SPICE_GTK_REQUIRED
1457314567 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
1457514569 ac_status=$?
1457614570 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1457714571 test $ac_status = 0; }; then
1467814672 else
1467914673 SPICE_GTK_CFLAGS=$pkg_cv_SPICE_GTK_CFLAGS
1468014674 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
1477214675 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
1477314676 $as_echo "yes" >&6; }
1477414677
1501514918
1501614919 fi
1501714920 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
1501814935 CFLAGS="$SAVED_CFLAGS"
1501914936 LIBS="$SAVED_LIBS"
1502014937
1572315640 # report actual input values of CONFIG_FILES etc. instead of their
1572415641 # values after options handling.
1572515642 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
1572715644 generated by GNU Autoconf 2.69. Invocation command line was
1572815645
1572915646 CONFIG_FILES = $CONFIG_FILES
1579315710 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
1579415711 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
1579515712 ac_cs_version="\\
15796 virt-viewer config.status 6.0
15713 virt-viewer config.status 7.0
1579715714 configured by $0, generated by GNU Autoconf 2.69,
1579815715 with options \\"\$ac_cs_config\\"
1579915716
00
1 AC_INIT([virt-viewer],[6.0])
1 AC_INIT([virt-viewer],[7.0])
22 AC_CONFIG_SRCDIR(src/virt-viewer-main.c)
33 AC_CONFIG_MACRO_DIR([m4])
44 AC_CONFIG_AUX_DIR([build-aux])
2323 LIBVIRT_REQUIRED="0.10.0"
2424 LIBVIRT_GLIB_REQUIRED="0.1.8"
2525 GTK_VNC_REQUIRED="0.4.0"
26 SPICE_GTK_REQUIRED="0.33"
26 SPICE_GTK_REQUIRED="0.35"
2727 SPICE_PROTOCOL_REQUIRED="0.12.7"
2828 GOVIRT_REQUIRED="0.3.2"
2929
158158 AS_IF([test "x$with_spice_gtk" != "xno" && test "x$with_spice_gtk" != "xyes"],
159159 [PKG_CHECK_EXISTS([spice-client-gtk-3.0 >= $SPICE_GTK_REQUIRED
160160 spice-client-glib-2.0 >= $SPICE_GTK_REQUIRED
161 spice-controller spice-protocol >= $SPICE_PROTOCOL_REQUIRED],
161 spice-protocol >= $SPICE_PROTOCOL_REQUIRED],
162162 [with_spice_gtk=yes], [with_spice_gtk=no])])
163163
164164 AS_IF([test "x$with_spice_gtk" = "xyes"],
165165 [PKG_CHECK_MODULES(SPICE_GTK, [spice-client-gtk-3.0 >= $SPICE_GTK_REQUIRED
166166 spice-client-glib-2.0 >= $SPICE_GTK_REQUIRED])]
167 [PKG_CHECK_MODULES(SPICE_CONTROLLER, [spice-controller])]
168167 [PKG_CHECK_MODULES(SPICE_PROTOCOL, [spice-protocol >= $SPICE_PROTOCOL_REQUIRED])]
169168 [AC_DEFINE([HAVE_SPICE_GTK], 1, [Have spice-gtk?])]
170169 )
189188 void *fun = rest_proxy_auth_cancel;])],
190189 [AC_DEFINE([HAVE_OVIRT_CANCEL], 1, [Have rest_proxy_auth_cancel and OVIRT_REST_CALL_ERROR_CANCELLED?])],
191190 [])
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 )
192195 CFLAGS="$SAVED_CFLAGS"
193196 LIBS="$SAVED_LIBS"]
194197 )
22 MANUFACTURER = Virt Manager Project
33
44 EXTRA_DIST = \
5 spice-xpi-client-remote-viewer \
65 virt-viewer.wxs.in \
76 $(NULL)
87
0 # Makefile.in generated by automake 1.15 from Makefile.am.
0 # Makefile.in generated by automake 1.15.1 from Makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2014 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
9696 @OS_WIN32_FALSE@am__append_3 = $(MIMEFILES) $(DESKTOPFILES) $(APPDATAFILES)
9797 subdir = data
9898 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
103104 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
104105 $(ACLOCAL_M4)
105106 DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
272273 SED = @SED@
273274 SET_MAKE = @SET_MAKE@
274275 SHELL = @SHELL@
275 SPICE_CONTROLLER_CFLAGS = @SPICE_CONTROLLER_CFLAGS@
276 SPICE_CONTROLLER_LIBS = @SPICE_CONTROLLER_LIBS@
277276 SPICE_GTK_CFLAGS = @SPICE_GTK_CFLAGS@
278277 SPICE_GTK_LIBS = @SPICE_GTK_LIBS@
279278 SPICE_GTK_REQUIRED = @SPICE_GTK_REQUIRED@
346345 NULL =
347346 CLEANFILES = $(am__append_1) $(am__append_2)
348347 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)
351349 @HAVE_LIBVIRT_FALSE@@OS_WIN32_TRUE@HaveLibvirt = False
352350 @HAVE_LIBVIRT_TRUE@@OS_WIN32_TRUE@HaveLibvirt = True
353351 @HAVE_OVIRT_FALSE@@OS_WIN32_TRUE@HaveOVirt = False
+0
-6
data/spice-xpi-client-remote-viewer less more
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"
5454 <Condition Message="VirtViewer is already installed.">NOT NEWERVERSIONDETECTED</Condition>
5555
5656 <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>
6757 <Component Id="CProgIds" Guid="89D6F46D-9C5E-4D65-8456-58FC361E553E">
6858 <ProgId Id='VirtViewer.vvfile' Description='VirtViewer connection file'>
6959 <Extension Id='vv' ContentType='application/x-virt-viewer'>
128118 <ComponentGroupRef Id="CG.virt-viewer"/>
129119 <ComponentRef Id="CDepsFile"/>
130120 <ComponentRef Id="CShortcut"/>
131 <ComponentRef Id="CRegistryEntries"/>
132121 <ComponentRef Id="CProgIds"/>
133122 <ComponentRef Id="CHwdataUSB"/>
134123 </Feature>
0 # Makefile.in generated by automake 1.15 from Makefile.am.
0 # Makefile.in generated by automake 1.15.1 from Makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2014 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
8989 host_triplet = @host@
9090 subdir = icons/16x16
9191 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
9697 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
9798 $(ACLOCAL_M4)
9899 DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
264265 SED = @SED@
265266 SET_MAKE = @SET_MAKE@
266267 SHELL = @SHELL@
267 SPICE_CONTROLLER_CFLAGS = @SPICE_CONTROLLER_CFLAGS@
268 SPICE_CONTROLLER_LIBS = @SPICE_CONTROLLER_LIBS@
269268 SPICE_GTK_CFLAGS = @SPICE_GTK_CFLAGS@
270269 SPICE_GTK_LIBS = @SPICE_GTK_LIBS@
271270 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.
11 # @configure_input@
22
3 # Copyright (C) 1994-2014 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
8989 host_triplet = @host@
9090 subdir = icons/22x22
9191 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
9697 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
9798 $(ACLOCAL_M4)
9899 DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
264265 SED = @SED@
265266 SET_MAKE = @SET_MAKE@
266267 SHELL = @SHELL@
267 SPICE_CONTROLLER_CFLAGS = @SPICE_CONTROLLER_CFLAGS@
268 SPICE_CONTROLLER_LIBS = @SPICE_CONTROLLER_LIBS@
269268 SPICE_GTK_CFLAGS = @SPICE_GTK_CFLAGS@
270269 SPICE_GTK_LIBS = @SPICE_GTK_LIBS@
271270 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.
11 # @configure_input@
22
3 # Copyright (C) 1994-2014 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
8989 host_triplet = @host@
9090 subdir = icons/24x24
9191 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
9697 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
9798 $(ACLOCAL_M4)
9899 DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
265266 SED = @SED@
266267 SET_MAKE = @SET_MAKE@
267268 SHELL = @SHELL@
268 SPICE_CONTROLLER_CFLAGS = @SPICE_CONTROLLER_CFLAGS@
269 SPICE_CONTROLLER_LIBS = @SPICE_CONTROLLER_LIBS@
270269 SPICE_GTK_CFLAGS = @SPICE_GTK_CFLAGS@
271270 SPICE_GTK_LIBS = @SPICE_GTK_LIBS@
272271 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.
11 # @configure_input@
22
3 # Copyright (C) 1994-2014 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
8989 host_triplet = @host@
9090 subdir = icons/256x256
9191 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
9697 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
9798 $(ACLOCAL_M4)
9899 DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
264265 SED = @SED@
265266 SET_MAKE = @SET_MAKE@
266267 SHELL = @SHELL@
267 SPICE_CONTROLLER_CFLAGS = @SPICE_CONTROLLER_CFLAGS@
268 SPICE_CONTROLLER_LIBS = @SPICE_CONTROLLER_LIBS@
269268 SPICE_GTK_CFLAGS = @SPICE_GTK_CFLAGS@
270269 SPICE_GTK_LIBS = @SPICE_GTK_LIBS@
271270 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.
11 # @configure_input@
22
3 # Copyright (C) 1994-2014 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
8989 host_triplet = @host@
9090 subdir = icons/32x32
9191 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
9697 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
9798 $(ACLOCAL_M4)
9899 DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
264265 SED = @SED@
265266 SET_MAKE = @SET_MAKE@
266267 SHELL = @SHELL@
267 SPICE_CONTROLLER_CFLAGS = @SPICE_CONTROLLER_CFLAGS@
268 SPICE_CONTROLLER_LIBS = @SPICE_CONTROLLER_LIBS@
269268 SPICE_GTK_CFLAGS = @SPICE_GTK_CFLAGS@
270269 SPICE_GTK_LIBS = @SPICE_GTK_LIBS@
271270 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.
11 # @configure_input@
22
3 # Copyright (C) 1994-2014 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
8989 host_triplet = @host@
9090 subdir = icons/48x48
9191 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
9697 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
9798 $(ACLOCAL_M4)
9899 DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
264265 SED = @SED@
265266 SET_MAKE = @SET_MAKE@
266267 SHELL = @SHELL@
267 SPICE_CONTROLLER_CFLAGS = @SPICE_CONTROLLER_CFLAGS@
268 SPICE_CONTROLLER_LIBS = @SPICE_CONTROLLER_LIBS@
269268 SPICE_GTK_CFLAGS = @SPICE_GTK_CFLAGS@
270269 SPICE_GTK_LIBS = @SPICE_GTK_LIBS@
271270 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.
11 # @configure_input@
22
3 # Copyright (C) 1994-2014 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
8989 host_triplet = @host@
9090 subdir = icons
9191 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
9697 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
9798 $(ACLOCAL_M4)
9899 DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
296297 SED = @SED@
297298 SET_MAKE = @SET_MAKE@
298299 SHELL = @SHELL@
299 SPICE_CONTROLLER_CFLAGS = @SPICE_CONTROLLER_CFLAGS@
300 SPICE_CONTROLLER_LIBS = @SPICE_CONTROLLER_LIBS@
301300 SPICE_GTK_CFLAGS = @SPICE_GTK_CFLAGS@
302301 SPICE_GTK_LIBS = @SPICE_GTK_LIBS@
303302 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.
11 # @configure_input@
22
3 # Copyright (C) 1994-2014 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
8888 host_triplet = @host@
8989 subdir = man
9090 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
9596 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
9697 $(ACLOCAL_M4)
9798 DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
265266 SED = @SED@
266267 SET_MAKE = @SET_MAKE@
267268 SHELL = @SHELL@
268 SPICE_CONTROLLER_CFLAGS = @SPICE_CONTROLLER_CFLAGS@
269 SPICE_CONTROLLER_LIBS = @SPICE_CONTROLLER_LIBS@
270269 SPICE_GTK_CFLAGS = @SPICE_GTK_CFLAGS@
271270 SPICE_GTK_LIBS = @SPICE_GTK_LIBS@
272271 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)
11 .\"
22 .\" Standard preamble:
33 .\" ========================================================================
5353 .\" Avoid warning from groff about undefined register 'F'.
5454 .de IX
5555 ..
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"
6062 ..
61 . if !\nF==2 \{\
62 . nr % 0
63 . nr F 2
63 . if !\nF==2 \{\
64 . nr % 0
65 . nr F 2
66 . \}
6467 . \}
6568 .\}
69 .rr rF
6670 .\"
6771 .\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2).
6872 .\" Fear. Run. Save yourself. No user-serviceable parts.
128132 .\" ========================================================================
129133 .\"
130134 .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"
132136 .\" For nroff, turn off justification. Always turn off hyphenation; it makes
133137 .\" way too many mistakes in technical documents.
134138 .if n .ad l
148152 .PP
149153 The \s-1URI\s0 can also point to a connection settings file, see the \s-1CONNECTION FILE\s0
150154 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.
151158 .SH "OPTIONS"
152159 .IX Header "OPTIONS"
153160 The following options are accepted when running \f(CW\*(C`remote\-viewer\*(C'\fR:
176183 .IP "\-t \s-1TITLE,\s0 \-\-title \s-1TITLE\s0" 4
177184 .IX Item "-t TITLE, --title TITLE"
178185 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.
184186 .IP "\-\-debug" 4
185187 .IX Item "--debug"
186188 Print debugging information
308310 .el .IP "\f(CWtls\-ciphers\fR (string)" 4
309311 .IX Item "tls-ciphers (string)"
310312 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))
312314 .ie n .IP """title"" (string)" 4
313315 .el .IP "\f(CWtitle\fR (string)" 4
314316 .IX Item "title (string)"
497499 to the extent permitted by law.
498500 .SH "SEE ALSO"
499501 .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
1616
1717 The URI can also point to a connection settings file, see the CONNECTION FILE
1818 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.
1922
2023 =head1 OPTIONS
2124
5356 =item -t TITLE, --title TITLE
5457
5558 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.
6259
6360 =item --debug
6461
384381
385382 =head1 SEE ALSO
386383
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>
388385
389386 =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)
11 .\"
22 .\" Standard preamble:
33 .\" ========================================================================
5353 .\" Avoid warning from groff about undefined register 'F'.
5454 .de IX
5555 ..
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 . \}
6467 . \}
6568 .\}
69 .rr rF
6670 .\"
6771 .\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2).
6872 .\" Fear. Run. Save yourself. No user-serviceable parts.
128132 .\" ========================================================================
129133 .\"
130134 .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"
132136 .\" For nroff, turn off justification. Always turn off hyphenation; it makes
133137 .\" way too many mistakes in technical documents.
134138 .if n .ad l
351355 to the extent permitted by law.
352356 .SH "SEE ALSO"
353357 .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
222222
223223 =head1 SEE ALSO
224224
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>
226226
227227 =cut
137137 %{mingw32_bindir}/virt-viewer.exe
138138 %{mingw32_bindir}/remote-viewer.exe
139139 %{mingw32_bindir}/windows-cmdline-wrapper.exe
140 %{mingw32_bindir}/debug-helper.exe
141140
142141 %dir %{mingw32_datadir}/virt-viewer/
143142 %{mingw32_datadir}/icons/hicolor/*/apps/*
154153 %{mingw64_bindir}/virt-viewer.exe
155154 %{mingw64_bindir}/remote-viewer.exe
156155 %{mingw64_bindir}/windows-cmdline-wrapper.exe
157 %{mingw64_bindir}/debug-helper.exe
158156
159157 %dir %{mingw64_datadir}/virt-viewer/
160158 %{mingw64_datadir}/icons/hicolor/*/apps/*
+242
-186
po/af.po less more
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "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"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Afrikaans\n"
4343 msgid "Virt-Viewer connection file"
4444 msgstr ""
4545
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
4775 msgid "Set window title"
4876 msgstr ""
4977
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"
5280 msgstr ""
5381
5482 #: ../src/remote-viewer.c:150
55 msgid "Remote viewer client"
56 msgstr ""
57
58 #: ../src/remote-viewer.c:175
5983 #, c-format
6084 msgid ""
6185 "\n"
6387 "\n"
6488 msgstr ""
6589
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
7591 #, c-format
7692 msgid "Run '%s --help' to see a full list of available command line options\n"
7793 msgstr ""
7894
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
80124 msgid "Failed to initiate connection"
81125 msgstr ""
82126
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
125128 msgid "No connection was chosen"
126129 msgstr ""
127130
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
129136 #, c-format
130137 msgid "Invalid file %s: "
131138 msgstr ""
132139
133 #: ../src/remote-viewer.c:1149
140 #: ../src/remote-viewer.c:786
134141 msgid "Cannot determine the connection type from URI"
135142 msgstr ""
136143
137 #: ../src/remote-viewer.c:1155
144 #: ../src/remote-viewer.c:792
138145 msgid "Couldn't open oVirt session: "
146 msgstr ""
147
148 #: ../src/remote-viewer.c:815
149 #, c-format
150 msgid "Unable to connect: %s"
139151 msgstr ""
140152
141153 #.
162174 msgstr ""
163175
164176 #: ../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
166178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
179 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
167180 msgid "_Cancel"
168181 msgstr ""
169182
170183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
171184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172185 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"
173203 msgstr ""
174204
175205 #: ../src/resources/ui/virt-viewer-about.ui.h:1
244274 msgid "Unsupported graphic type '%s'"
245275 msgstr ""
246276
247 #: ../src/virt-viewer-app.c:1145
277 #: ../src/virt-viewer-app.c:1146
248278 msgid "Connect to ssh failed."
249279 msgstr ""
250280
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
256291 msgid "Connect to channel unsupported."
257292 msgstr ""
258293
259 #: ../src/virt-viewer-app.c:1221
294 #: ../src/virt-viewer-app.c:1238
260295 msgid "Display can only be attached through libvirt with --attach"
261296 msgstr ""
262297
263 #: ../src/virt-viewer-app.c:1244
298 #: ../src/virt-viewer-app.c:1263
264299 msgid "Connecting to graphic server"
265300 msgstr ""
266301
267 #: ../src/virt-viewer-app.c:1343
302 #: ../src/virt-viewer-app.c:1362
268303 msgid "Guest domain has shutdown"
269304 msgstr ""
270305
271 #: ../src/virt-viewer-app.c:1404
306 #: ../src/virt-viewer-app.c:1423
272307 msgid "Connected to graphic server"
273308 msgstr ""
274309
275 #: ../src/virt-viewer-app.c:1431
310 #: ../src/virt-viewer-app.c:1452
276311 #, c-format
277312 msgid "Unable to connect to the graphic server %s"
278313 msgstr ""
279314
280 #: ../src/virt-viewer-app.c:1457
315 #: ../src/virt-viewer-app.c:1478
281316 #, c-format
282317 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
283318 msgstr ""
284319
285 #: ../src/virt-viewer-app.c:1471
320 #: ../src/virt-viewer-app.c:1492
286321 #, c-format
287322 msgid "Unable to authenticate with remote desktop server: %s"
288323 msgstr ""
289324
290 #: ../src/virt-viewer-app.c:1479
325 #: ../src/virt-viewer-app.c:1500
291326 #, c-format
292327 msgid "USB redirection error: %s"
293328 msgstr ""
294329
295 #: ../src/virt-viewer-app.c:1813
330 #: ../src/virt-viewer-app.c:1834
296331 #, c-format
297332 msgid "Zoom level must be within %d-%d\n"
298333 msgstr ""
299334
300 #: ../src/virt-viewer-app.c:1866
335 #: ../src/virt-viewer-app.c:1887
301336 #, c-format
302337 msgid "%s\n"
303338 msgstr ""
304339
305 #: ../src/virt-viewer-app.c:1876
340 #: ../src/virt-viewer-app.c:1897
306341 #, c-format
307342 msgid "%s version %s"
308343 msgstr ""
309344
310 #: ../src/virt-viewer-app.c:2300
345 #: ../src/virt-viewer-app.c:2321
311346 #, c-format
312347 msgid "Display _%d"
313348 msgstr ""
314349
315 #: ../src/virt-viewer-app.c:2556
350 #: ../src/virt-viewer-app.c:2577
316351 #, c-format
317352 msgid "Invalid kiosk-quit argument: %s"
318353 msgstr ""
319354
320 #: ../src/virt-viewer-app.c:2567
355 #: ../src/virt-viewer-app.c:2588
321356 msgid "Display version information"
322357 msgstr ""
323358
324 #: ../src/virt-viewer-app.c:2569
359 #: ../src/virt-viewer-app.c:2590
325360 msgid "Zoom level of window, in percentage"
326361 msgstr ""
327362
328 #: ../src/virt-viewer-app.c:2571
363 #: ../src/virt-viewer-app.c:2592
329364 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
330365 msgstr ""
331366
332 #: ../src/virt-viewer-app.c:2573
367 #: ../src/virt-viewer-app.c:2594
333368 msgid "Customise hotkeys"
334369 msgstr ""
335370
336 #: ../src/virt-viewer-app.c:2575
371 #: ../src/virt-viewer-app.c:2596
337372 msgid "Enable kiosk mode"
338373 msgstr ""
339374
340 #: ../src/virt-viewer-app.c:2577
375 #: ../src/virt-viewer-app.c:2598
341376 msgid "Quit on given condition in kiosk mode"
342377 msgstr ""
343378
344 #: ../src/virt-viewer-app.c:2577
379 #: ../src/virt-viewer-app.c:2598
345380 msgid "<never|on-disconnect>"
346381 msgstr ""
347382
348 #: ../src/virt-viewer-app.c:2579
383 #: ../src/virt-viewer-app.c:2600
349384 msgid "Display verbose information"
350385 msgstr ""
351386
352 #: ../src/virt-viewer-app.c:2581
387 #: ../src/virt-viewer-app.c:2602
353388 msgid "Display debugging information"
354389 msgstr ""
355390
384419
385420 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
386421 #: ../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
388423 msgid "label"
389424 msgstr ""
390425
404439 msgid "VNC does not provide GUID"
405440 msgstr ""
406441
407 #: ../src/virt-viewer-file-transfer-dialog.c:122
442 #: ../src/virt-viewer-file-transfer-dialog.c:128
408443 msgid "File Transfers"
409444 msgstr ""
410445
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..."
415454 msgstr[0] ""
416455 msgstr[1] ""
417456
418 #: ../src/virt-viewer-file-transfer-dialog.c:203
457 #: ../src/virt-viewer-file-transfer-dialog.c:228
419458 #, c-format
420459 msgid "An error caused the following file transfers to fail:%s"
421460 msgstr ""
424463 msgid "Virt Viewer"
425464 msgstr ""
426465
427 #: ../src/virt-viewer-session-spice.c:705
466 #: ../src/virt-viewer-session-spice.c:704
428467 msgid "Invalid password"
429468 msgstr ""
430469
431470 #. Create the widgets
432 #: ../src/virt-viewer-session-spice.c:797
471 #: ../src/virt-viewer-session-spice.c:802
433472 msgid "Select USB devices for redirection"
434473 msgstr ""
435474
436 #: ../src/virt-viewer-session-spice.c:799
475 #: ../src/virt-viewer-session-spice.c:804
437476 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
438477 msgid "_Close"
439478 msgstr ""
440479
441 #: ../src/virt-viewer-session-vnc.c:156
480 #: ../src/virt-viewer-session-vnc.c:162
442481 #, c-format
443482 msgid "Unsupported authentication type %d"
444483 msgstr ""
445484
446485 #: ../src/virt-viewer-vm-connection.c:64
447 msgid "No virtual machine found"
486 msgid "No running virtual machine found"
448487 msgstr ""
449488
450489 #: ../src/virt-viewer-vm-connection.c:93
451490 msgid "No virtual machine was chosen"
452491 msgstr ""
453492
454 #: ../src/virt-viewer-window.c:538
493 #: ../src/virt-viewer-window.c:544
455494 msgid "Ctrl+Alt+_Del"
456495 msgstr ""
457496
458 #: ../src/virt-viewer-window.c:539
497 #: ../src/virt-viewer-window.c:545
459498 msgid "Ctrl+Alt+_Backspace"
460499 msgstr ""
461500
462 #: ../src/virt-viewer-window.c:541
501 #: ../src/virt-viewer-window.c:547
463502 msgid "Ctrl+Alt+F_1"
464503 msgstr ""
465504
466 #: ../src/virt-viewer-window.c:542
505 #: ../src/virt-viewer-window.c:548
467506 msgid "Ctrl+Alt+F_2"
468507 msgstr ""
469508
470 #: ../src/virt-viewer-window.c:543
509 #: ../src/virt-viewer-window.c:549
471510 msgid "Ctrl+Alt+F_3"
472511 msgstr ""
473512
474 #: ../src/virt-viewer-window.c:544
513 #: ../src/virt-viewer-window.c:550
475514 msgid "Ctrl+Alt+F_4"
476515 msgstr ""
477516
478 #: ../src/virt-viewer-window.c:545
517 #: ../src/virt-viewer-window.c:551
479518 msgid "Ctrl+Alt+F_5"
480519 msgstr ""
481520
482 #: ../src/virt-viewer-window.c:546
521 #: ../src/virt-viewer-window.c:552
483522 msgid "Ctrl+Alt+F_6"
484523 msgstr ""
485524
486 #: ../src/virt-viewer-window.c:547
525 #: ../src/virt-viewer-window.c:553
487526 msgid "Ctrl+Alt+F_7"
488527 msgstr ""
489528
490 #: ../src/virt-viewer-window.c:548
529 #: ../src/virt-viewer-window.c:554
491530 msgid "Ctrl+Alt+F_8"
492531 msgstr ""
493532
494 #: ../src/virt-viewer-window.c:549
533 #: ../src/virt-viewer-window.c:555
495534 msgid "Ctrl+Alt+F_9"
496535 msgstr ""
497536
498 #: ../src/virt-viewer-window.c:550
537 #: ../src/virt-viewer-window.c:556
499538 msgid "Ctrl+Alt+F1_0"
500539 msgstr ""
501540
502 #: ../src/virt-viewer-window.c:551
541 #: ../src/virt-viewer-window.c:557
503542 msgid "Ctrl+Alt+F11"
504543 msgstr ""
505544
506 #: ../src/virt-viewer-window.c:552
545 #: ../src/virt-viewer-window.c:558
507546 msgid "Ctrl+Alt+F12"
508547 msgstr ""
509548
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
511555 msgid "_Save"
512556 msgstr ""
513557
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
519563 msgid "Unknown"
520564 msgstr ""
521565
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
523571 msgid "Disconnect"
524572 msgstr ""
525573
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
527575 msgid "USB device selection"
528576 msgstr ""
529577
530 #: ../src/virt-viewer-window.c:1093
578 #: ../src/virt-viewer-window.c:1193
531579 msgid "Send key combination"
532580 msgstr ""
533581
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
535583 msgid "Leave fullscreen"
536584 msgstr ""
537585
538 #: ../src/virt-viewer-window.c:1179
586 #: ../src/virt-viewer-window.c:1279
539587 msgid "Ctrl+Alt"
540588 msgstr ""
541589
542 #: ../src/virt-viewer-window.c:1182
590 #: ../src/virt-viewer-window.c:1282
543591 #, c-format
544592 msgid "(Press %s to release pointer)"
545593 msgstr ""
548596 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
549597 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
550598 #.
551 #: ../src/virt-viewer-window.c:1193
599 #: ../src/virt-viewer-window.c:1293
552600 #, c-format
553601 msgid "%s%s%s - %s"
554602 msgstr ""
555603
556604 #. translators: <space>
557 #: ../src/virt-viewer-window.c:1197
605 #: ../src/virt-viewer-window.c:1297
558606 msgid " "
559607 msgstr ""
560608
561 #: ../src/virt-viewer-file.c:843
609 #: ../src/virt-viewer-file.c:862
562610 #, c-format
563611 msgid ""
564612 "At least %s version %s is required to setup this connection, see %s for "
565613 "details"
566614 msgstr ""
567615
568 #: ../src/virt-viewer-file.c:851
616 #: ../src/virt-viewer-file.c:870
569617 #, c-format
570618 msgid "At least %s version %s is required to setup this connection"
571619 msgstr ""
572620
573 #: ../src/virt-viewer.c:90
621 #: ../src/virt-viewer.c:133
574622 msgid "Direct connection with no automatic tunnels"
575623 msgstr ""
576624
577 #: ../src/virt-viewer.c:92
625 #: ../src/virt-viewer.c:135
578626 msgid "Attach to the local display using libvirt"
579627 msgstr ""
580628
581 #: ../src/virt-viewer.c:94
629 #: ../src/virt-viewer.c:137
582630 msgid "Connect to hypervisor"
583631 msgstr ""
584632
585 #: ../src/virt-viewer.c:96
633 #: ../src/virt-viewer.c:139
586634 msgid "Wait for domain to start"
587635 msgstr ""
588636
589 #: ../src/virt-viewer.c:98
637 #: ../src/virt-viewer.c:141
590638 msgid "Reconnect to domain upon restart"
591639 msgstr ""
592640
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
594654 msgid "Virtual machine graphical console"
595655 msgstr ""
596656
597 #: ../src/virt-viewer.c:124
657 #: ../src/virt-viewer.c:173
598658 #, c-format
599659 msgid ""
600660 "\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
606666 #, c-format
607667 msgid ""
608668 "\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
614674 msgid "Waiting for guest domain to re-start"
615675 msgstr ""
616676
617 #: ../src/virt-viewer.c:496
677 #: ../src/virt-viewer.c:554
618678 #, c-format
619679 msgid "Cannot determine the graphic type for the guest %s"
620680 msgstr ""
621681
622 #: ../src/virt-viewer.c:535
682 #: ../src/virt-viewer.c:603
623683 #, c-format
624684 msgid "Cannot determine the host for the guest %s"
625685 msgstr ""
626686
627 #: ../src/virt-viewer.c:563
687 #: ../src/virt-viewer.c:631
628688 #, c-format
629689 msgid "Guest '%s' is not reachable"
630690 msgstr ""
631691
632 #: ../src/virt-viewer.c:787
692 #: ../src/virt-viewer.c:860
633693 #, c-format
634694 msgid "Virtual machine %s is not running"
635695 msgstr ""
636696
637 #: ../src/virt-viewer.c:810
697 #: ../src/virt-viewer.c:884
638698 msgid "Waiting for libvirt to start"
639699 msgstr ""
640700
641 #: ../src/virt-viewer.c:814
701 #: ../src/virt-viewer.c:888
642702 msgid "Finding guest domain"
643703 msgstr ""
644704
645 #: ../src/virt-viewer.c:818
705 #: ../src/virt-viewer.c:892
646706 msgid "Waiting for guest domain to be created"
647707 msgstr ""
648708
649 #: ../src/virt-viewer.c:840
709 #: ../src/virt-viewer.c:918
650710 msgid "Checking guest domain status"
651711 msgstr ""
652712
653 #: ../src/virt-viewer.c:843
713 #: ../src/virt-viewer.c:921
654714 msgid "Cannot get guest state"
655715 msgstr ""
656716
657 #: ../src/virt-viewer.c:849
717 #: ../src/virt-viewer.c:927
658718 msgid "Waiting for guest domain to start"
659719 msgstr ""
660720
661 #: ../src/virt-viewer.c:953
721 #: ../src/virt-viewer.c:1040
662722 #, c-format
663723 msgid "Unable to connect to libvirt with URI: %s."
664724 msgstr ""
665725
666 #: ../src/virt-viewer.c:954
726 #: ../src/virt-viewer.c:1041
667727 msgid "[none]"
668728 msgstr ""
669729
670 #: ../src/virt-viewer.c:961
730 #: ../src/virt-viewer.c:1048
671731 msgid "Authentication failed."
672732 msgstr ""
673733
674 #: ../src/virt-viewer.c:1021
734 #: ../src/virt-viewer.c:1108
675735 msgid "Failed to connect: "
676736 msgstr ""
677737
703763 msgstr ""
704764
705765 #: ../src/resources/ui/virt-viewer.ui.h:6
766 msgid "_Change CD"
767 msgstr ""
768
769 #: ../src/resources/ui/virt-viewer.ui.h:7
706770 msgid "_Preferences"
707771 msgstr ""
708772
709 #: ../src/resources/ui/virt-viewer.ui.h:7
773 #: ../src/resources/ui/virt-viewer.ui.h:8
710774 msgid "_Quit"
711775 msgstr ""
712776
713 #: ../src/resources/ui/virt-viewer.ui.h:8
777 #: ../src/resources/ui/virt-viewer.ui.h:9
714778 msgid "_View"
715779 msgstr ""
716780
717 #: ../src/resources/ui/virt-viewer.ui.h:9
781 #: ../src/resources/ui/virt-viewer.ui.h:10
718782 msgid "_Full screen"
719783 msgstr ""
720784
721 #: ../src/resources/ui/virt-viewer.ui.h:10
785 #: ../src/resources/ui/virt-viewer.ui.h:11
722786 msgid "_Zoom"
723787 msgstr ""
724788
725 #: ../src/resources/ui/virt-viewer.ui.h:11
789 #: ../src/resources/ui/virt-viewer.ui.h:12
726790 msgid "Zoom _In"
727791 msgstr ""
728792
729 #: ../src/resources/ui/virt-viewer.ui.h:12
793 #: ../src/resources/ui/virt-viewer.ui.h:13
730794 msgid "Zoom _Out"
731795 msgstr ""
732796
733 #: ../src/resources/ui/virt-viewer.ui.h:13
797 #: ../src/resources/ui/virt-viewer.ui.h:14
734798 msgid "_Normal Size"
735799 msgstr ""
736800
737 #: ../src/resources/ui/virt-viewer.ui.h:14
801 #: ../src/resources/ui/virt-viewer.ui.h:15
738802 msgid "_Displays"
739803 msgstr ""
740804
741 #: ../src/resources/ui/virt-viewer.ui.h:15
805 #: ../src/resources/ui/virt-viewer.ui.h:16
742806 msgid "Release cursor"
743807 msgstr ""
744808
745 #: ../src/resources/ui/virt-viewer.ui.h:16
809 #: ../src/resources/ui/virt-viewer.ui.h:17
746810 msgid "_Send key"
747811 msgstr ""
748812
749 #: ../src/resources/ui/virt-viewer.ui.h:17
813 #: ../src/resources/ui/virt-viewer.ui.h:18
750814 msgid "_Help"
751815 msgstr ""
752816
753 #: ../src/resources/ui/virt-viewer.ui.h:18
817 #: ../src/resources/ui/virt-viewer.ui.h:19
754818 msgid "_Guest Details"
755819 msgstr ""
756820
757 #: ../src/resources/ui/virt-viewer.ui.h:19
821 #: ../src/resources/ui/virt-viewer.ui.h:20
758822 msgid "_About"
759 msgstr ""
760
761 #: ../src/resources/ui/virt-viewer.ui.h:20
762 msgid "_Change CD"
763823 msgstr ""
764824
765825 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
778838 msgid "Choose a virtual machine"
779839 msgstr ""
780840
781 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
782 msgid "Name"
783 msgstr ""
784
785841 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
786842 msgid "Available virtual machines"
787843 msgstr ""
+242
-186
po/am.po less more
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "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"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Amharic\n"
4343 msgid "Virt-Viewer connection file"
4444 msgstr ""
4545
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
4775 msgid "Set window title"
4876 msgstr ""
4977
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"
5280 msgstr ""
5381
5482 #: ../src/remote-viewer.c:150
55 msgid "Remote viewer client"
56 msgstr ""
57
58 #: ../src/remote-viewer.c:175
5983 #, c-format
6084 msgid ""
6185 "\n"
6387 "\n"
6488 msgstr ""
6589
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
7591 #, c-format
7692 msgid "Run '%s --help' to see a full list of available command line options\n"
7793 msgstr ""
7894
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
80124 msgid "Failed to initiate connection"
81125 msgstr ""
82126
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
125128 msgid "No connection was chosen"
126129 msgstr ""
127130
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
129136 #, c-format
130137 msgid "Invalid file %s: "
131138 msgstr ""
132139
133 #: ../src/remote-viewer.c:1149
140 #: ../src/remote-viewer.c:786
134141 msgid "Cannot determine the connection type from URI"
135142 msgstr ""
136143
137 #: ../src/remote-viewer.c:1155
144 #: ../src/remote-viewer.c:792
138145 msgid "Couldn't open oVirt session: "
146 msgstr ""
147
148 #: ../src/remote-viewer.c:815
149 #, c-format
150 msgid "Unable to connect: %s"
139151 msgstr ""
140152
141153 #.
162174 msgstr ""
163175
164176 #: ../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
166178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
179 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
167180 msgid "_Cancel"
168181 msgstr ""
169182
170183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
171184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172185 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"
173203 msgstr ""
174204
175205 #: ../src/resources/ui/virt-viewer-about.ui.h:1
244274 msgid "Unsupported graphic type '%s'"
245275 msgstr ""
246276
247 #: ../src/virt-viewer-app.c:1145
277 #: ../src/virt-viewer-app.c:1146
248278 msgid "Connect to ssh failed."
249279 msgstr ""
250280
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
256291 msgid "Connect to channel unsupported."
257292 msgstr ""
258293
259 #: ../src/virt-viewer-app.c:1221
294 #: ../src/virt-viewer-app.c:1238
260295 msgid "Display can only be attached through libvirt with --attach"
261296 msgstr ""
262297
263 #: ../src/virt-viewer-app.c:1244
298 #: ../src/virt-viewer-app.c:1263
264299 msgid "Connecting to graphic server"
265300 msgstr ""
266301
267 #: ../src/virt-viewer-app.c:1343
302 #: ../src/virt-viewer-app.c:1362
268303 msgid "Guest domain has shutdown"
269304 msgstr ""
270305
271 #: ../src/virt-viewer-app.c:1404
306 #: ../src/virt-viewer-app.c:1423
272307 msgid "Connected to graphic server"
273308 msgstr ""
274309
275 #: ../src/virt-viewer-app.c:1431
310 #: ../src/virt-viewer-app.c:1452
276311 #, c-format
277312 msgid "Unable to connect to the graphic server %s"
278313 msgstr ""
279314
280 #: ../src/virt-viewer-app.c:1457
315 #: ../src/virt-viewer-app.c:1478
281316 #, c-format
282317 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
283318 msgstr ""
284319
285 #: ../src/virt-viewer-app.c:1471
320 #: ../src/virt-viewer-app.c:1492
286321 #, c-format
287322 msgid "Unable to authenticate with remote desktop server: %s"
288323 msgstr ""
289324
290 #: ../src/virt-viewer-app.c:1479
325 #: ../src/virt-viewer-app.c:1500
291326 #, c-format
292327 msgid "USB redirection error: %s"
293328 msgstr ""
294329
295 #: ../src/virt-viewer-app.c:1813
330 #: ../src/virt-viewer-app.c:1834
296331 #, c-format
297332 msgid "Zoom level must be within %d-%d\n"
298333 msgstr ""
299334
300 #: ../src/virt-viewer-app.c:1866
335 #: ../src/virt-viewer-app.c:1887
301336 #, c-format
302337 msgid "%s\n"
303338 msgstr ""
304339
305 #: ../src/virt-viewer-app.c:1876
340 #: ../src/virt-viewer-app.c:1897
306341 #, c-format
307342 msgid "%s version %s"
308343 msgstr ""
309344
310 #: ../src/virt-viewer-app.c:2300
345 #: ../src/virt-viewer-app.c:2321
311346 #, c-format
312347 msgid "Display _%d"
313348 msgstr ""
314349
315 #: ../src/virt-viewer-app.c:2556
350 #: ../src/virt-viewer-app.c:2577
316351 #, c-format
317352 msgid "Invalid kiosk-quit argument: %s"
318353 msgstr ""
319354
320 #: ../src/virt-viewer-app.c:2567
355 #: ../src/virt-viewer-app.c:2588
321356 msgid "Display version information"
322357 msgstr ""
323358
324 #: ../src/virt-viewer-app.c:2569
359 #: ../src/virt-viewer-app.c:2590
325360 msgid "Zoom level of window, in percentage"
326361 msgstr ""
327362
328 #: ../src/virt-viewer-app.c:2571
363 #: ../src/virt-viewer-app.c:2592
329364 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
330365 msgstr ""
331366
332 #: ../src/virt-viewer-app.c:2573
367 #: ../src/virt-viewer-app.c:2594
333368 msgid "Customise hotkeys"
334369 msgstr ""
335370
336 #: ../src/virt-viewer-app.c:2575
371 #: ../src/virt-viewer-app.c:2596
337372 msgid "Enable kiosk mode"
338373 msgstr ""
339374
340 #: ../src/virt-viewer-app.c:2577
375 #: ../src/virt-viewer-app.c:2598
341376 msgid "Quit on given condition in kiosk mode"
342377 msgstr ""
343378
344 #: ../src/virt-viewer-app.c:2577
379 #: ../src/virt-viewer-app.c:2598
345380 msgid "<never|on-disconnect>"
346381 msgstr ""
347382
348 #: ../src/virt-viewer-app.c:2579
383 #: ../src/virt-viewer-app.c:2600
349384 msgid "Display verbose information"
350385 msgstr ""
351386
352 #: ../src/virt-viewer-app.c:2581
387 #: ../src/virt-viewer-app.c:2602
353388 msgid "Display debugging information"
354389 msgstr ""
355390
384419
385420 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
386421 #: ../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
388423 msgid "label"
389424 msgstr ""
390425
404439 msgid "VNC does not provide GUID"
405440 msgstr ""
406441
407 #: ../src/virt-viewer-file-transfer-dialog.c:122
442 #: ../src/virt-viewer-file-transfer-dialog.c:128
408443 msgid "File Transfers"
409444 msgstr ""
410445
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..."
415454 msgstr[0] ""
416455 msgstr[1] ""
417456
418 #: ../src/virt-viewer-file-transfer-dialog.c:203
457 #: ../src/virt-viewer-file-transfer-dialog.c:228
419458 #, c-format
420459 msgid "An error caused the following file transfers to fail:%s"
421460 msgstr ""
424463 msgid "Virt Viewer"
425464 msgstr ""
426465
427 #: ../src/virt-viewer-session-spice.c:705
466 #: ../src/virt-viewer-session-spice.c:704
428467 msgid "Invalid password"
429468 msgstr ""
430469
431470 #. Create the widgets
432 #: ../src/virt-viewer-session-spice.c:797
471 #: ../src/virt-viewer-session-spice.c:802
433472 msgid "Select USB devices for redirection"
434