~ubuntu-dev/ubuntu/lucid/mutt/lucid-201002110857

« back to all changes in this revision

Viewing changes to regex.c

  • Committer: Bazaar Package Importer
  • Author(s): أحمد المحمودي (Ahmed El-Mahmoudy)
  • Date: 2009-06-17 17:17:28 UTC
  • mfrom: (1.3.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 22.
  • Revision ID: james.westby@ubuntu.com-20090617171728-61dkl7w5fgn7ybdq
Tags: upstream-1.5.20
Import upstream version 1.5.20

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
 
57
57
#undef DEBUG
58
58
 
 
59
/* On OS X 10.5.x, wide char functions are inlined by default breaking
 
60
 * --without-wc-funcs compilation
 
61
 */
 
62
#ifdef __APPLE_CC__
 
63
#define _DONT_USE_CTYPE_INLINE_
 
64
#endif
 
65
 
59
66
#if (defined(HAVE_ALLOCA_H) && !defined(_AIX))
60
67
# include <alloca.h>
61
68
#endif
73
80
 
74
81
/* For platform which support the ISO C amendement 1 functionality we
75
82
   support user defined character classes.  */
76
 
#if defined _LIBC || (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H)
 
83
#ifdef HAVE_WCHAR_H
 
84
# include <wchar.h>
 
85
#endif
 
86
#if defined(HAVE_WCTYPE_H) && defined(HAVE_WC_FUNCS)
77
87
# include <wctype.h>
78
 
# include <wchar.h>
79
88
#endif
80
89
 
81
90
/* This is for other GNU distributions with internationalized messages.  */