Thu, 18 Aug 2005 06:33:33 +0000
[gaim-migrate @ 13499]
Fix a C99ism.
| 10977 | 1 | |
| 2 | ||
| 3 | /* CFLAGS trumps configure values */ | |
| 4 | ||
| 5 | ||
| 6 | /** default active message */ | |
| 7 | #ifndef MW_PLUGIN_DEFAULT_ACTIVE_MSG | |
| 8 | #define MW_PLUGIN_DEFAULT_ACTIVE_MSG "Talk to me" | |
| 9 | #endif | |
| 10 | /* "Talk to me" */ | |
| 11 | ||
| 12 | ||
| 13 | /** default away message */ | |
| 14 | #ifndef MW_PLUGIN_DEFAULT_AWAY_MSG | |
| 15 | #define MW_PLUGIN_DEFAULT_AWAY_MSG "Not here right now" | |
| 16 | #endif | |
| 17 | /* "Not here right now" */ | |
| 18 | ||
| 19 | ||
| 20 | /** default busy message */ | |
| 21 | #ifndef MW_PLUGIN_DEFAULT_BUSY_MSG | |
| 22 | #define MW_PLUGIN_DEFAULT_BUSY_MSG "Please do not disturb me" | |
| 23 | #endif | |
| 24 | /* "Please do not disturb me" */ | |
| 25 | ||
| 26 | ||
| 27 | /** default host for the gaim plugin. You can specialize a build to | |
| 28 | default to your server by supplying this at compile time */ | |
| 29 | #ifndef MW_PLUGIN_DEFAULT_HOST | |
| 30 | #define MW_PLUGIN_DEFAULT_HOST "" | |
| 31 | #endif | |
| 32 | /* "" */ | |
| 33 | ||
| 34 | ||
| 35 | /** default port for the gaim plugin. You can specialize a build to | |
| 36 | default to your server by supplying this at compile time */ | |
| 37 | #ifndef MW_PLUGIN_DEFAULT_PORT | |
| 38 | #define MW_PLUGIN_DEFAULT_PORT 1533 | |
| 39 | #endif | |
| 40 | /* 1533 */ | |
| 41 | ||
| 42 | ||
| 43 | /** client id to report to the server. See mwLoginType in meanwhile's | |
| 44 | mw_common.h for some sample values */ | |
| 45 | #ifndef MW_CLIENT_TYPE_ID | |
| 46 | #define MW_CLIENT_TYPE_ID mwLogin_MEANWHILE | |
| 47 | #endif | |
| 48 | /* mwLogin_MEANWHILE */ | |
| 49 | ||
| 50 |