Version 6 (modified by 10 years ago) (diff) | ,
---|
Pidgin for Windows Build Instructions
Note: These instructions are for 3.0.0 branch. The current instructions for 2.x.y are found here.
Get the Pidgin source code
The 3.0.0 branch isn't released yet, so there are no source packages for this at the moment.
The development source is available via mercurial. See UsingPidginMercurial for more information.
Cross Compiling (the easy way)
It is quite easy to cross compile Pidgin for Windows on a Linux machine.
To begin, you'll need to install MinGW. On Debian/Ubuntu, this involves installing packages
mingw32
,mingw32-binutils
,mingw32-runtime
,mingw32-cross-pkg-config
. On other distributions, the packages may be named differently.
When compiling from hg, you'll need to generate
configure
script:NOCONFIGURE=indeed ./autogen.sh
Set up pkgconfig (this may vary, depending on Linux distribution):
export PKG_CONFIG_PATH=/usr/i686-w64-mingw32/sys-root/mingw/lib/pkgconfig:\ /usr/i686-w64-mingw32/sys-root/mingw/share/pkgconfig export PKG_CONFIG=/usr/bin/i686-w64-mingw32-pkg-config
Run configure with cross-compile option. You may choose FHS or classic directory layout (default is classic). For now (when installer is missing), FHS will be easier to install and run. Then - build it.
./configure --host=i686-w64-mingw32 --with-win32-dirs=<fhs|classic> make
At last, install Pidgin, Finch and its dependencies.
make DESTDIR=/path/to/install-dir install cd /path/to/install-dir cd usr/local # it may depend on your configured $prefix wget https://pidgin.im/~twasilczyk/win32/gtk-runtime-2.24.18.0.zip unzip gtk-runtime-2.24.18.0.zip cp -r Gtk/* . rm -rf Gtk gtk-runtime-2.24.18.0.zip
Compiling directly on Windows with Cygwin (the hard way)
This method was used for 2.x.y branch and most probably will be dropped, when cross-compilation was fully functional (including the installer).
Set up your build environment
- Install the Cygwin Bash shell. Make sure to select Unix file mode during setup.
Also make sure you install bash, bzip2, ca-certificates, coreutils, gawk, gnupg, grep, gzip, libiconv, make, mercurial, patch, sed, tar, unzip, wget, xxd and zip (several of these are selected by default, those in bold are not). Be sure to add Cygwin versions of any programs you may use that require Cygwin path names (for example, if you want to use vim to edit monotone commit messages, you need to install the Cygwin version of vim -- native Win32 vim will be unable to read Cygwin-style paths).
You may prefer to use MSYS instead of Cygwin.
- Download and install NSIS and its plugins:
- extract
SHA1Plugin.dll
from pidgin-inst-deps-20130214.tar.gz into thePlugins
directory of your NSIS installation; - download the nsisunz plugin, and extract
nsisunz.dll
into thePlugins
directory, like above.
- extract
- Download the
Bonjour SDK for Windows
from the Apple developer website (Apple ID may be necessary) and install it to default location.
- Download
Perl 5.10
or newer and install it, preferably toC:\Perl
. You may use ActivePerl Community Edition.
- Extract or check out the Pidgin source into
$PIDGIN_DEV_ROOT/pidgin-<version>
. Some users may find the instructions for customizing their build environment useful.
You don't have to actually define an environment variable called
PIDGIN_DEV_ROOT
, it is simply used here as a placeholder.
Note: You should avoid using a
$PIDGIN_DEV_ROOT
path that contains spaces as that can cause unnecessary complications.
People are sometimes confused about the directory structure, so here is an example structure after all the dependencies have been installed (
$PIDGIN_DEV_ROOT
isc:\devel\pidgin-devel
in this example):c:\devel\pidgin-devel (The following is the source tree root, containing config.h.mingw.) c:\devel\pidgin-devel\pidgin-<version> (If the following file is present, your structure is probably correct.) c:\devel\pidgin-devel\pidgin-<version>\pidgin\win32\prepare-workspace.sh
- Go through the rest of setting build environment using automatic setup script by running the following from Cygwin terminal:
cd $PIDGIN_DEV_ROOT/pidgin-<version>/pidgin/win32 ./prepare-workspace.sh
Build Pidgin
Run the following:
cd $PIDGIN_DEV_ROOT/pidgin-<version> make -f Makefile.mingw installNow just wait and let your compiler do its thing. When finished, Pidgin will be in
$PIDGIN_DEV_ROOT/pidgin-<version>/win32-install-dir
.
Build the Pidgin Installer
If you want to sign the executables (not necessary for personal use), you'll need to get an appropriate code signing certificate, generate a GPG key if you don't already have one, then download and install Mono. In your
local.mak
file (see below), define theSIGN_EXECUTABLES
variable to 1,MONO_SIGNCODE
to the fully qualified path to thesigncode
batch file in the Monobin
directory, and theSIGNCODE_SPC
andSIGNCODE_PVK
variables to the appropriate files from your certificate. E.g.:SIGN_EXECUTABLES=1 MONO_SIGNCODE=/cygdrive/c/Program\ Files\ \(x86\)/Mono-2.10.8/bin/signcode SIGNCODE_SPC=c:\\Path\\to\\authenticode.spc SIGNCODE_PVK=c:\\Path\\to\\authenticode.pvk #Set up gpg to use a separate keyring GPG_SIGN=gpg --no-default-keyring --secret-keyring /path/to/secring.gpg
If you don't need executable signing, you can start here.
There are 2 different installers, an "Offline" installer that includes all dependencies (except spellchecking dictionaries) and the debug symbols and an "Online" installer that includes only Pidgin itself and will download the various dependencies if necessary. The
Makefile.mingw
targets for these areinstaller_offline
, andinstaller
respectively. To build both, use theinstallers
target.cd $PIDGIN_DEV_ROOT/pidgin-<version> make -f Makefile.mingw installersWhen it finishes, your installer(s) should be in
$PIDGIN_DEV_ROOT/pidgin-<version>/
.
Customizing the Build Environment
Most people will find that the standard build environment directory is completely adequate. It is, however, possible to override the locations of the various dependencies and target directories. This is often useful to test against a development version of a library dependency or to override compiler flags.
This done is by overriding the various Makefile variables in a
local.mak
file in the$PIDGIN_DEV_ROOT/pidgin-<version>
directory. This file does not exist by default.
Most of the variables that can be overridden with this method are defined in the libpurple/win32/global.mak file. For example, to install Pidgin over
c:\Program Files\Pidgin
instead of$PIDGIN_DEV_ROOT/pidgin/win32-install-dir
, create a$PIDGIN_DEV_ROOT/pidgin/local.mak
containing:#Override the install location PIDGIN_INSTALL_DIR = /cygdrive/c/Program\ Files/Pidgin PURPLE_INSTALL_DIR = /cygdrive/c/Program\ Files/Pidgin
One nice use of the
local.mak
file is for cross compiling.
Debugging
There is a quite good Just In Time debugger for MinGW: drmingw.
There is also a version ofgdb
available from MinGW, if you prefer.