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

« back to all changes in this revision

Viewing changes to config.h.in

  • Committer: Bazaar Package Importer
  • Author(s): Bhavani Shankar
  • Date: 2009-06-07 17:30:03 UTC
  • mto: (16.2.1 experimental) (2.3.1 squeeze)
  • mto: This revision was merged to the branch mainline in revision 21.
  • Revision ID: james.westby@ubuntu.com-20090607173003-rg37ui3h2bbv7wl0
Tags: upstream-1.5.19
ImportĀ upstreamĀ versionĀ 1.5.19

Show diffs side-by-side

added added

removed removed

Lines of Context:
210
210
/* Define if your <locale.h> file defines LC_MESSAGES. */
211
211
#undef HAVE_LC_MESSAGES
212
212
 
213
 
/* Define to 1 if you have the `idn' library (-lidn). */
 
213
/* Define to 1 if you have the `idn' library */
214
214
#undef HAVE_LIBIDN
215
215
 
216
216
/* Define to 1 if you have the `intl' library (-lintl). */
381
381
/* Define to 1 if you have the <sys/types.h> header file. */
382
382
#undef HAVE_SYS_TYPES_H
383
383
 
 
384
/* Tokyo Cabinet Support */
 
385
#undef HAVE_TC
 
386
 
384
387
/* Define to 1 if you have the `towlower' function. */
385
388
#undef HAVE_TOWLOWER
386
389
 
447
450
/* Where new mail is spooled. */
448
451
#undef MAILPATH
449
452
 
 
453
/* Define if you want complete documentation. */
 
454
#undef MAKEDOC_FULL
 
455
 
450
456
/* Where to find mixmaster on your system. */
451
457
#undef MIXMASTER
452
458
 
569
575
/* Version number of package */
570
576
#undef VERSION
571
577
 
572
 
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
573
 
   significant byte first (like Motorola and SPARC, unlike Intel and VAX). */
574
 
#if defined __BIG_ENDIAN__
575
 
# define WORDS_BIGENDIAN 1
576
 
#elif ! defined __LITTLE_ENDIAN__
577
 
# undef WORDS_BIGENDIAN
578
 
#endif
 
578
/* Define to 1 if your processor stores words with the most significant byte
 
579
   first (like Motorola and SPARC, unlike Intel and VAX). */
 
580
#undef WORDS_BIGENDIAN
579
581
 
580
582
#ifndef HAVE_C99_INTTYPES
581
583
#  if SIZEOF_SHORT == 4
598
600
/* Number of bits in a file offset, on hosts where this is settable. */
599
601
#undef _FILE_OFFSET_BITS
600
602
 
 
603
/* Enable GNU extensions on systems that have them.  */
 
604
#ifndef _GNU_SOURCE
 
605
# undef _GNU_SOURCE
 
606
#endif
 
607
 
601
608
/* Define to 1 to make fseeko visible on some hosts (e.g. glibc 2.2). */
602
609
#undef _LARGEFILE_SOURCE
603
610
 
604
611
/* Define for large files, on AIX-style hosts. */
605
612
#undef _LARGE_FILES
606
613
 
607
 
/* Define to 1 if on MINIX. */
608
 
#undef _MINIX
609
 
 
610
 
/* Define to 2 if the system does not provide POSIX.1 features except with
611
 
   this defined. */
612
 
#undef _POSIX_1_SOURCE
613
 
 
614
 
/* Define to 1 if you need to in order for `stat' and other things to work. */
615
 
#undef _POSIX_SOURCE
616
 
 
617
 
/* Enable extensions on AIX 3, Interix.  */
618
 
#ifndef _ALL_SOURCE
619
 
# undef _ALL_SOURCE
620
 
#endif
621
 
/* Enable GNU extensions on systems that have them.  */
622
 
#ifndef _GNU_SOURCE
623
 
# undef _GNU_SOURCE
624
 
#endif
625
 
/* Enable threading extensions on Solaris.  */
626
 
#ifndef _POSIX_PTHREAD_SEMANTICS
627
 
# undef _POSIX_PTHREAD_SEMANTICS
628
 
#endif
629
 
/* Enable extensions on HP NonStop.  */
630
 
#ifndef _TANDEM_SOURCE
631
 
# undef _TANDEM_SOURCE
632
 
#endif
633
 
/* Enable general extensions on Solaris.  */
634
 
#ifndef __EXTENSIONS__
635
 
# undef __EXTENSIONS__
636
 
#endif
637
 
 
638
 
 
639
614
/* Define like PROTOTYPES; this can be used by system headers. */
640
615
#undef __PROTOTYPES
641
616
 
681
656
/* fseeko portability defines */
682
657
#ifdef HAVE_FSEEKO
683
658
# define LOFF_T off_t
684
 
# if SIZEOF_OFF_T == 8
685
 
#  define OFF_T_FMT "%lld"
 
659
# if HAVE_C99_INTTYPES && HAVE_INTTYPES_H
 
660
#  if SIZEOF_OFF_T == 8
 
661
#   define OFF_T_FMT "%" PRId64
 
662
#  else
 
663
#   define OFF_T_FMT "%" PRId32
 
664
#  endif
686
665
# else
687
 
#  define OFF_T_FMT "%ld"
 
666
#  if (SIZEOF_OFF_T == 8) && (SIZEOF_LONG == 4)
 
667
#   define OFF_T_FMT "%lld"
 
668
#  else
 
669
#   define OFF_T_FMT "%ld"
 
670
#  endif
688
671
# endif
689
672
#else
690
673
# define LOFF_T long