1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
#ifndef __MCABBER_CONFIG_H__
#define __MCABBER_CONFIG_H__ 1
/* Are modules enabled or no */
#undef MODULES_ENABLE
/* ... */
#undef HAVE_LIBOTR
/* ... */
#undef HAVE_GPGME
/* ... */
#undef HAVE_NCURSESW_NCURSES_H
/* ... */
#undef HAVE_NCURSES_NCURSES_H
/* ... */
#undef WITH_ENCHANT
/* ... */
#undef WITH_ASPELL
/* ... */
#undef XEP0022
/* ... */
#undef HAVE_UNICODE
/* ... */
#undef HAVE_WCHAR_H
/* ... */
#undef HAVE_WCTYPE_H
/* ... */
#undef HAVE_WCHAR_H
/* ... */
#undef HAVE_ISWBLANK
/* ... */
#undef HAVE_STRCASESTR
/* Default data files prefix */
#undef DATA_DIR
/* Default modules location */
#undef PKGLIB_DIR
/* To satisfy gnutls */
#undef _FILE_OFFSET_BITS
/* Mcabber branch name (string) */
#undef MCABBER_BRANCH
/* Mcabber version (string) */
#undef MCABBER_VERSION
#endif
|