~ubuntu-branches/ubuntu/intrepid/pidgin/intrepid-security

« back to all changes in this revision

Viewing changes to libpurple/win32/win32dep.h

  • Committer: Bazaar Package Importer
  • Author(s): Pedro Fragoso
  • Date: 2008-04-04 02:18:00 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20080404021800-qaa00wom38gd7xus
Tags: 1:2.4.1-1ubuntu1
* Sync with Debian, remaining Ubuntu changes; (LP: #211769)
  - debian/control:
    + Set Maintainer to Ubuntu Core Developers.
    + Add build-deps on liblaunchpad-integration-dev, intltool,
      libnm-glib-dev (for --enable-nm)
    + Drop build-deps on libsilc-1.1-2-dev | libsilc-dev (>= 1.1.1) as
      this library is in universe.
    + Drop the libpurple0 recommends on libpurple-bin.
    + Add a gaim transitionnal package for upgrades.
    + Moved finch's libx11-6 dependency to Suggests
  - Ship compatibility symlinks via debian/gaim.links
  - debian/rules:
    + Pass --enable-nm to configure to enable NetworkManager support
    + Pass --disable-silc to configure to disable silc support even if
      it's installed in the build environment.
    + Add X-Ubuntu-Gettext-Domain to the desktop file and update the
      translation templates in common-install-impl::.
    + Added necessary arguments to dh_shlibdeps for finch
  - Update debian/prefs.xml to set the notify plugin prefs
    /plugins/gtk/X11/notify/* and set /pidgin/plugins/loaded to load
    the notify plugin
  - debian/patches:
    + 02_lpi for LP integration
    + 04_let_crasher_for_apport to stop catching the SIGSEGV signal
      and let apport handle it
    + 05_default_to_irc_ubuntu_com to set the default IRC
      server to irc.ubuntu.com.
    + 70_autoconf patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
#include "wpurpleerror.h"
29
29
#include "libc_interface.h"
30
30
 
 
31
#ifdef __cplusplus
 
32
extern "C" {
 
33
#endif /* __cplusplus */
 
34
 
31
35
/* rpcndr.h defines small as char, causing problems, so we need to undefine it */
32
 
#ifdef _WIN32
33
36
#undef small
34
 
#endif
35
37
 
36
38
/*
37
39
 *  PROTOS
50
52
gboolean wpurple_check_for_proxy_changes(void);
51
53
 
52
54
/* Determine Purple paths */
53
 
char *wpurple_get_special_folder(int folder_type); /* needs to be g_free'd */
 
55
gchar *wpurple_get_special_folder(int folder_type); /* needs to be g_free'd */
54
56
const char *wpurple_install_dir(void);
55
57
const char *wpurple_lib_dir(void);
56
58
const char *wpurple_locale_dir(void);
73
75
#define LIBDIR wpurple_lib_dir()
74
76
#define LOCALEDIR wpurple_locale_dir()
75
77
 
 
78
#ifdef __cplusplus
 
79
}
 
80
#endif /* __cplusplus */
 
81
 
76
82
#endif /* _WIN32DEP_H_ */
77
83