Bug 661045
| Summary: | FTBFS tsclient-2.0.2-7.fc13 | ||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | FTBFS <ftbfs> | ||||||||||||||
| Component: | tsclient | Assignee: | Søren Sandmann Pedersen <sandmann> | ||||||||||||||
| Status: | CLOSED WONTFIX | QA Contact: | Fedora Extras Quality Assurance <extras-qa> | ||||||||||||||
| Severity: | high | Docs Contact: | |||||||||||||||
| Priority: | high | ||||||||||||||||
| Version: | 15 | CC: | jmontleo, kem, rosset.filipe, sandmann | ||||||||||||||
| Target Milestone: | --- | Keywords: | Triaged | ||||||||||||||
| Target Release: | --- | ||||||||||||||||
| Hardware: | All | ||||||||||||||||
| OS: | Linux | ||||||||||||||||
| URL: | http://linux.dell.com/files/fedora/FixBuildRequires/mock-results/ | ||||||||||||||||
| Whiteboard: | |||||||||||||||||
| Fixed In Version: | Doc Type: | Bug Fix | |||||||||||||||
| Doc Text: | Story Points: | --- | |||||||||||||||
| Clone Of: | Environment: | ||||||||||||||||
| Last Closed: | 2012-04-23 19:33:34 UTC | Type: | --- | ||||||||||||||
| Regression: | --- | Mount Type: | --- | ||||||||||||||
| Documentation: | --- | CRM: | |||||||||||||||
| Verified Versions: | Category: | --- | |||||||||||||||
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||||||||||||
| Cloudforms Team: | --- | Target Upstream Version: | |||||||||||||||
| Embargoed: | |||||||||||||||||
| Bug Depends On: | |||||||||||||||||
| Bug Blocks: | 659965 | ||||||||||||||||
| Attachments: |
|
||||||||||||||||
|
Description
FTBFS
2010-12-07 18:48:14 UTC
Created attachment 466982 [details]
root.log
root.log for i386
Created attachment 466983 [details]
build.log
build.log for i386
Created attachment 466984 [details]
mock.log
mock.log for i386
Created attachment 466985 [details]
root.log
root.log for x86_64
Created attachment 466986 [details]
build.log
build.log for x86_64
Created attachment 466987 [details]
mock.log
mock.log for x86_64
Fedora 15 has the following contents in dead.package: Removed due to dead upstream and superior alternatives E.g. Remmina and gnome-rdp This bug can therefore be closed WONTFIX imho. I have not used gnome-rdp or remmina before, but I tried installing both:
yum -y install gnome-rdp ends in:
Error: Package: gnome-rdp-0.2.3-6.fc12.x86_64 (fedora)
Requires: mono(Mono.Data.SqliteClient) = 2.0.0.0
You could try using --skip-broken to work around the problem
You could try running: rpm -Va --nofiles --nodigest
I have these installed:
remmina-plugins-common-0.9.2-2.fc15.x86_64
remmina-0.9.3-3.fc15.x86_64
remmina-plugins-rdp-0.9.2-2.fc15.x86_64
and remmina still only shows the SFTP and SSH plugins as installed and still only allows for creating SSH and SFTP connections.
tsclient appears to build and work with very little change. Any one of the programs would probaby be fine if they worked, but so far this is the simplest solution I found:
looks like old was:
NotifyNotification* notify_notification_new ( const gchar * summary,
const gchar * body,
const gchar * icon,
GtkWidget * attach
)
and new:
NotifyNotification * notify_notification_new (const char *summary,
const char *body,
const char *icon);
so:
diff -uNr tsclient-2.0.2 tsclient-2.0.2-new
diff -uNr tsclient-2.0.2/src/plugins/default/tsc-rdp-connection.c tsclient-2.0.2-new/src/plugins/default/tsc-rdp-connection.c
--- tsclient-2.0.2/src/plugins/default/tsc-rdp-connection.c 2008-11-26 16:31:35.000000000 -0500
+++ tsclient-2.0.2-new/src/plugins/default/tsc-rdp-connection.c 2011-04-11 09:06:54.000000000 -0400
@@ -52,7 +52,7 @@
tsc_connection_get_name (TSC_CONNECTION (connection)));
body = g_strdup_printf (_("You are connected to '%s' in fullscreen mode. Use Control+Alt+Enter to switch to and from windowed mode."), tsc_connection_get_name (TSC_CONNECTION (connection)));
- n = notify_notification_new (summary, body, GTK_STOCK_DIALOG_INFO, NULL);
+ n = notify_notification_new (summary, body, GTK_STOCK_DIALOG_INFO);
g_free (summary);
g_free (body);
diff -uNr tsclient-2.0.2/src/plugins/default/tsc-vnc-connection.c tsclient-2.0.2-new/src/plugins/default/tsc-vnc-connection.c
--- tsclient-2.0.2/src/plugins/default/tsc-vnc-connection.c 2008-11-26 16:19:02.000000000 -0500
+++ tsclient-2.0.2-new/src/plugins/default/tsc-vnc-connection.c 2011-04-11 09:10:58.000000000 -0400
@@ -39,7 +39,7 @@
tsc_connection_get_name (TSC_CONNECTION (connection)));
body = g_strdup_printf (_("You are connected to '%s' in fullscreen mode. Use F8 to switch to and from windowed mode."), tsc_connection_get_name (TSC_CONNECTION (connection)));
- n = notify_notification_new (summary, body, GTK_STOCK_DIALOG_INFO, NULL);
+ n = notify_notification_new (summary, body, GTK_STOCK_DIALOG_INFO);
g_free (summary);
g_free (body);
actually remmina works; looks like when you run it it stays in the notification area, so once i fully closed it and restarted the program I had rdp connections available, so there is at least one working alternative. I'm closing this bug since tsclient was removed due to dead upstream and at least two superior alternatives (remmina and gnome-rdp) |