-
-
doc/reference/libpurple/tut_c_plugins.md (Diff revision 1) This should probably be rephrased to something like "stand alone build system" or maybe just "building" or something. In purple3/pidgin3 we explicitly don't support the old setup where you could drop a plugin file in the directory and then compile it there which I believe is what you're referncing.
-
doc/reference/libpurple/tut_c_plugins.md (Diff revision 1) While this is generally good for users, it causes all sorts of issues for packagers. Perviously plugins have checked if a custom prefix was set and if not then fall back to the value in the plugin directory.
I know this sounds silly, but this is a real issue for homebrew on mac and something else I can't recall right now.
-
Improve the C plugin tutorial and fix the property issue
Review Request #1707 — Created Aug. 31, 2022 and updated
Information | |
---|---|
goodspeed | |
pidgin/pidgin | |
default | |
Reviewers | |
pidgin | |
Improve the C plugin tutorial and fix the property issue
Summary |
---|
Description | From | Last Updated |
---|---|---|
This should probably be rephrased to something like "stand alone build system" or maybe just "building" or something. In purple3/pidgin3 … |
|
|
While this is generally good for users, it causes all sorts of issues for packagers. Perviously plugins have checked if … |
|
|
indentation is weird here |
|
|
install directory should be configured via the --prefix argument to meson which is available via get_option('prefix'). There's no need to … |
|

Commits: |
|
||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Diff: |
Revision 2 (+77 -5) |

Commits: |
|
||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Diff: |
Revision 3 (+94 -6) |
-
-
doc/reference/libpurple/tut_c_plugins.md (Diff revisions 2 - 3) install directory should be configured via the
--prefix
argument to meson which is available viaget_option('prefix')
.There's no need to pull a shell environment variable in here which would break the build when not using a UNIX shell, like compiling under command prompt or power shell on windows.
Generally speaking, if the prefix is set to
/usr/local
it should be save to override with the value from purple's pkg-config file.