Mercurial > pidgin
annotate libgaim/plugins/perl/common/Stringref.xs @ 14797:aae32cf1caac
[gaim-migrate @ 17562]
SF Patch #1581054 from Jason Lynch
Fixes SF Bug #1581014
'Several switches in the configure script
(startup-notification and gtkspell, among others)
explicitly set the relevant enable_x variable to "no"
in the AC_ARG_ENABLE macro in the "action-if-given"
area, with the side effect that if someone explicitly
passes --enable-feature, the feature will be disabled.
replacing the "no" with "$enableval" as in other
AC_ARG_ENABLE calls fixes the problem.'
The signature is:
AC_ARG_ENABLE (FEATURE, HELP-STRING, [ACTION-IF-GIVEN], [ACTION-IF-NOT-GIVEN])
committer: Tailor Script <tailor@pidgin.im>
| author | Richard Laager <rlaager@wiktel.com> |
|---|---|
| date | Sun, 22 Oct 2006 05:12:28 +0000 |
| parents | 60b1bc8dbf37 |
| children |
| rev | line source |
|---|---|
| 14192 | 1 #include "module.h" |
| 2 | |
| 3 MODULE = Gaim::Stringref PACKAGE = Gaim::Stringref PREFIX = gaim_stringref_ | |
| 4 PROTOTYPES: ENABLE | |
| 5 | |
| 6 int | |
| 7 gaim_stringref_cmp(s1, s2) | |
| 8 Gaim::Stringref s1 | |
| 9 Gaim::Stringref s2 | |
| 10 | |
| 11 size_t | |
| 12 gaim_stringref_len(stringref) | |
| 13 Gaim::Stringref stringref | |
| 14 | |
| 15 Gaim::Stringref | |
| 16 gaim_stringref_new(class, value) | |
| 17 const char *value | |
| 18 C_ARGS: | |
| 19 value | |
| 20 | |
| 21 Gaim::Stringref | |
| 22 gaim_stringref_new_noref(class, value) | |
| 23 const char *value | |
| 24 C_ARGS: | |
| 25 value | |
| 26 | |
| 27 Gaim::Stringref | |
| 28 gaim_stringref_ref(stringref) | |
| 29 Gaim::Stringref stringref | |
| 30 | |
| 31 void | |
| 32 gaim_stringref_unref(stringref) | |
| 33 Gaim::Stringref stringref | |
| 34 | |
| 35 const char * | |
| 36 gaim_stringref_value(stringref) | |
| 37 Gaim::Stringref stringref |
