~ubuntu-branches/ubuntu/quantal/mutt/quantal-security

« back to all changes in this revision

Viewing changes to config.h.in

  • Committer: Bazaar Package Importer
  • Author(s): Michael Vogt
  • Date: 2008-06-19 10:29:06 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20080619102906-qw80cgc0ave6ifj8
Tags: 1.5.18-2ubuntu1
* Merge from debian unstable, remaining changes:
  - Build-depend on elinks (elinks doesn't provide links anymore).

Show diffs side-by-side

added added

removed removed

Lines of Context:
351
351
/* Define to 1 if you have the `strsep' function. */
352
352
#undef HAVE_STRSEP
353
353
 
 
354
/* Define to 1 if you have the `strtok_r' function. */
 
355
#undef HAVE_STRTOK_R
 
356
 
354
357
/* Define to 1 if you have the `strtoul' function. */
355
358
#undef HAVE_STRTOUL
356
359
 
566
569
/* Version number of package */
567
570
#undef VERSION
568
571
 
569
 
/* Define to 1 if your processor stores words with the most significant byte
570
 
   first (like Motorola and SPARC, unlike Intel and VAX). */
571
 
#undef WORDS_BIGENDIAN
 
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
572
579
 
573
580
#ifndef HAVE_C99_INTTYPES
574
581
#  if SIZEOF_SHORT == 4
591
598
/* Number of bits in a file offset, on hosts where this is settable. */
592
599
#undef _FILE_OFFSET_BITS
593
600
 
594
 
/* Enable GNU extensions on systems that have them.  */
595
 
#ifndef _GNU_SOURCE
596
 
# undef _GNU_SOURCE
597
 
#endif
598
 
 
599
601
/* Define to 1 to make fseeko visible on some hosts (e.g. glibc 2.2). */
600
602
#undef _LARGEFILE_SOURCE
601
603
 
602
604
/* Define for large files, on AIX-style hosts. */
603
605
#undef _LARGE_FILES
604
606
 
 
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
 
605
639
/* Define like PROTOTYPES; this can be used by system headers. */
606
640
#undef __PROTOTYPES
607
641