X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=unix%2Fuxputty.c;h=d71d28988d6501138455a36aeb9a6f0dc7e2b1c0;hb=eceacef0f084121c8b80a21c054ccdb31aeae39d;hp=6b1eabb7cbf7df03348492b528e1ff60df8c330a;hpb=1f5780ad9f731f7687362577268e812e0746e761;p=PuTTY.git diff --git a/unix/uxputty.c b/unix/uxputty.c index 6b1eabb7..d71d2898 100644 --- a/unix/uxputty.c +++ b/unix/uxputty.c @@ -7,6 +7,7 @@ #include #include #include +#include #include "putty.h" #include "storage.h" @@ -105,6 +106,21 @@ char *make_default_wintitle(char *hostname) return dupcat(hostname, " - PuTTY", NULL); } +/* + * X11-forwarding-related things suitable for Gtk app. + */ + +const char platform_x11_best_transport[] = "unix"; + +char *platform_get_x_display(void) { + const char *display; + /* Try to take account of --display and what have you. */ + if (!(display = gdk_get_display())) + /* fall back to traditional method */ + display = getenv("DISPLAY"); + return dupstr(display); +} + int main(int argc, char **argv) { extern int pt_main(int argc, char **argv);