• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

doc/H03-May-2022-5,7134,940

finch/H03-May-2022-21,49315,985

libpurple/H03-May-2022-293,561203,176

m4macros/H03-May-2022-753664

pidgin/H03-May-2022-120,61789,603

po/H15-Oct-2021-1,240,510909,802

share/H15-Oct-2021-4,6404,323

AUTHORSH A D17-Sep-20214 KiB146115

COPYINGH A D12-Feb-202117.6 KiB340281

COPYRIGHTH A D17-Sep-202110.3 KiB660654

ChangeLogH A D15-Oct-2021219.7 KiB5,1774,676

ChangeLog.APIH A D17-Sep-202166.5 KiB1,7471,589

ChangeLog.win32H A D12-Feb-202115.6 KiB438360

Doxyfile.inH A D17-Sep-202167.3 KiB1,6481,190

HACKINGH A D17-Sep-20212.1 KiB3729

INSTALLH A D17-Sep-202110.2 KiB224170

Makefile.amH A D17-Sep-20214.9 KiB14895

Makefile.inH A D03-May-202237.8 KiB1,1451,000

Makefile.mingwH A D17-Sep-20219.1 KiB219176

NEWSH A D17-Sep-2021130.4 KiB2,7202,245

PLUGIN_HOWTOH A D17-Sep-2021363 86

READMEH A D17-Sep-20212.3 KiB6345

README.mingwH A D17-Sep-2021192 74

acinclude.m4H A D17-Sep-202119.3 KiB531487

aclocal.m4H A D15-Oct-2021401.3 KiB11,18810,117

compileH A D17-Sep-20217.2 KiB349259

config.guessH A D12-Feb-202143.2 KiB1,4811,288

config.h.inH A D15-Oct-202113.4 KiB521354

config.h.mingwH A D17-Sep-202114.3 KiB517350

config.subH A D12-Feb-202135.3 KiB1,8021,661

configureH A D03-May-2022819.8 KiB28,75324,394

configure.acH A D15-Oct-202186 KiB2,6912,389

depcompH A D17-Sep-202123 KiB792502

doxy2devhelp.xslH A D17-Sep-20214.1 KiB9989

fix-casts.shH A D17-Sep-2021736 1915

gaim-uninstalled.pc.inH A D17-Sep-2021445 1513

gaim.pc.inH A D17-Sep-2021351 1513

install-shH A D12-Feb-202115 KiB542352

intltool-extract.inH A D17-Sep-20210

intltool-merge.inH A D17-Sep-20210

intltool-update.inH A D17-Sep-20210

ltmain.shH A D17-Sep-2021319.6 KiB11,2528,044

missingH A D17-Sep-20216.7 KiB216143

package_revision.hH A D15-Oct-202160 21

pidgin.apspec.inH A D17-Sep-20212.2 KiB6756

pidgin.specH A D15-Oct-202122.2 KiB660516

pidgin.spec.inH A D17-Sep-202122.2 KiB660536

test-driverH A D12-Feb-20214.6 KiB15188

valgrind-suppressionsH A D17-Sep-20212.7 KiB155153

README

1Purple, Pidgin and Finch
2========================
3See AUTHORS and COPYRIGHT for the list of contributors.
4
5libpurple is a library intended to be used by programmers seeking
6to write an IM client that connects to many IM networks.  It supports
7XMPP among other protocols.
8
9Pidgin is a graphical IM client written in C which uses the GTK+
10toolkit.
11
12Finch is a text-based IM client written in C which uses the ncurses
13toolkit.
14
15BUILD
16=====
17
18Read the 'INSTALL' file for more detailed directions.
19
20These programs use the standard ./configure ; make. You need to use
21gmake, BSD make probably won't work. Remember, run ./configure --help
22to see what build options are available.
23
24In order to compile Pidgin you need to have GTK+ 2.0 installed (as
25well as the development files!). The configure script will fail if you
26don't.  If you don't have GTK+ 2.0 installed, you should install it
27using your distribution's package management tools.
28
29For sound support, you also need gstreamer 0.10 or higher. For
30spellchecking support, you need libgtkspell (http://gtkspell.sf.net/).
31Your distro of choice probably already includes these, just be sure to
32install the development packages.
33
34RUN
35===
36
37You should run 'make install' as root to make sure plugins and other files
38get installed into locations they want to be in. Once you've done that,
39you only need to run 'pidgin' or 'finch'.
40
41To get started, simply add a new account.
42
43If you come across a bug, please report it at: http://developer.pidgin.im
44
45PLUGINS
46=======
47
48If you do not wish to enable the plugin support within Purple, run the
49./configure script with the --disable-plugins option and recompile your
50source code.  This will prevent the ability to load plugins.
51
52'make install' puts the plugins in $PREFIX/lib/purple (PREFIX being what
53you specified when you ./configure'd - it defaults to /usr/local). Purple
54looks for the plugins in that directory by default.  Plugins can be installed
55per-user in ~/.purple/plugins as well.  Pidgin and Finch also look in
56$PREFIX/lib/pidgin and $PREFIX/lib/finch for UI-specific, respectively.
57
58To build a plugin from a .c file, put it in the plugins/ directory in
59the source and run 'make filename.so', e.g. if you have the .c file
60'kickass.c', put it in the plugins/ directory, and from that directory,
61run 'make kickass.so'.
62
63

README.mingw

1How to build Pidgin for Windows using MinGW
2===========================================
3
4For the latest build instructions, please refer to:
5
6http://developer.pidgin.im/wiki/BuildingWinPidgin
7