Mercurial > pidgin
annotate doc/plugin-signals.dox @ 24389:2b62300d2c19
Use libtool to build static archives when --with-static-prpls is passed
to configure. Does anyone know why we weren't using libtool before? We
were building old-fashioned .a files. But libtool archives (.la) can
contain either static or shared libraries.
I found it a lot easier to get static prpl compilation working after
making this change (that is to say, it worked). Without this I got this
error, which is probably fixable, but consistently using libtool seems
like it makes things easier:
*** Warning: Linking the shared library libpurple.la against the
*** static library ../libpurple/protocols/msn/libmsn.a is not portable!
/usr/bin/ld: ../libpurple/protocols/msn/libmsn.a(libmsn_a-msn.o): relocation R_X86_64_32 against `a local symbol' can not be used when making a shared object; recompile with -fPIC
../libpurple/protocols/msn/libmsn.a: could not read symbols: Bad value
collect2: ld returned 1 exit status
| author | Mark Doliner <mark@kingant.net> |
|---|---|
| date | Wed, 12 Nov 2008 11:30:51 +0000 |
| parents | e0613cf8c493 |
| children |
| rev | line source |
|---|---|
| 12053 | 1 /** @page plugin-signals Plugin Signals |
| 2 | |
| 3 @signals | |
| 4 @signal plugin-load | |
| 5 @signal plugin-unload | |
| 6 @endsignals | |
| 7 | |
|
20807
e0613cf8c493
Add some links from signal documentation back to the documentation for the
Will Thompson <will.thompson@collabora.co.uk>
parents:
16183
diff
changeset
|
8 @see plugin.h |
|
e0613cf8c493
Add some links from signal documentation back to the documentation for the
Will Thompson <will.thompson@collabora.co.uk>
parents:
16183
diff
changeset
|
9 |
| 12053 | 10 <hr> |
| 11 | |
| 12 @signaldef plugin-load | |
| 13 @signalproto | |
|
16183
8cf53d7a0887
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@wiktel.com>
parents:
12053
diff
changeset
|
14 void (*plugin_load)(PurplePlugin *plugin); |
| 12053 | 15 @endsignalproto |
| 16 @signaldesc | |
| 17 Emitted when a plugin is loaded. | |
| 18 @param plugin The plugin that was loaded. | |
| 19 @endsignaldef | |
| 20 | |
| 21 @signaldef plugin-unload | |
| 22 @signalproto | |
|
16183
8cf53d7a0887
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@wiktel.com>
parents:
12053
diff
changeset
|
23 void (*plugin_unload)(PurplePlugin *plugin); |
| 12053 | 24 @endsignalproto |
| 25 @signaldesc | |
| 26 Emitted when a plugin is unloaded. | |
| 27 @param plugin The plugin that was unloaded. | |
| 28 @endsignaldef | |
| 29 | |
| 30 */ | |
|
20807
e0613cf8c493
Add some links from signal documentation back to the documentation for the
Will Thompson <will.thompson@collabora.co.uk>
parents:
16183
diff
changeset
|
31 // vim: syntax=c.doxygen tw=75 et |
