comparison gtk/gtkprefs.c @ 14224:ab8a105eff62

[gaim-migrate @ 16905] First step of getting wingaim working again. libgaim and gtk are compiling. The protocols aren't compiling yet. There are a number of things that are compiling, but should be cleaned up. committer: Tailor Script <tailor@pidgin.im>
author Daniel Atallah <daniel.atallah@gmail.com>
date Sun, 20 Aug 2006 16:49:37 +0000
parents 009db0b357b5
children 01daacf7b771
comparison
equal deleted inserted replaced
14223:7c560c01b8f9 14224:ab8a105eff62
48 #include "gtksound.h" 48 #include "gtksound.h"
49 #include "gtkthemes.h" 49 #include "gtkthemes.h"
50 #include "gtkutils.h" 50 #include "gtkutils.h"
51 #include "gaimstock.h" 51 #include "gaimstock.h"
52 52
53 #ifdef _WIN32
54 # include "gtkwin32dep.h"
55 #endif
56
53 #define PROXYHOST 0 57 #define PROXYHOST 0
54 #define PROXYPORT 1 58 #define PROXYPORT 1
55 #define PROXYUSER 2 59 #define PROXYUSER 2
56 #define PROXYPASS 3 60 #define PROXYPASS 3
57 61
492 gchar *destdir_escaped = g_shell_quote(destdir); 496 gchar *destdir_escaped = g_shell_quote(destdir);
493 command = g_strdup_printf("tar > /dev/null xzf %s -C %s", path_escaped, destdir_escaped); 497 command = g_strdup_printf("tar > /dev/null xzf %s -C %s", path_escaped, destdir_escaped);
494 g_free(path_escaped); 498 g_free(path_escaped);
495 g_free(destdir_escaped); 499 g_free(destdir_escaped);
496 #else 500 #else
497 if(!wgaim_gz_untar(path, destdir)) { 501 if(!gtkwgaim_gz_untar(path, destdir)) {
498 g_free(destdir); 502 g_free(destdir);
499 return; 503 return;
500 } 504 }
501 #endif 505 #endif
502 } 506 }