diff --git a/midori/midori-view.c b/midori/midori-view.c
index ce6cfb5b..3ac90010 100644
--- a/midori/midori-view.c
+++ b/midori/midori-view.c
@@ -4023,8 +4023,7 @@ midori_view_set_uri (MidoriView* view,
"
libsoup | %s |
"
"cairo | %s (%s) |
"
"libnotify | %s |
"
- "libunique | %s |
"
- "libhildon | %s |
"
+ "single instance | %s |
"
"Platform | %s %s %s |
"
"Identification | %s |
"
"Video Formats | %s |
"
@@ -4045,8 +4044,15 @@ midori_view_set_uri (MidoriView* view,
LIBSOUP_VERSION,
CAIRO_VERSION_STRING, cairo_version_string (),
LIBNOTIFY_VERSION,
- UNIQUE_VERSION,
- HAVE_HILDON ? "Yes" : "No",
+ #ifdef HAVE_HILDON_2_2
+ "Hildon 2.2",
+ #elif HAVE_HILDON
+ "Hildon",
+ #elif HAVE_UNIQUE
+ "libunique " UNIQUE_VERSION,
+ #else
+ "Sockets",
+ #endif
platform, sys_name, architecture ? architecture : "", ident,
video_formats, netscape_plugins);
g_free (command_line);