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
|
/*============================================================================
* wcsconfig_utils.h is generated from wcsconfig_utils.h.in by 'configure'.
* It contains C preprocessor macro definitions for compiling the WCSLIB 8.4
* utilities.
*
* Author: Mark Calabretta, Australia Telescope National Facility, CSIRO.
* http://www.atnf.csiro.au/people/Mark.Calabretta
* $Id: wcsconfig_utils.h.in,v 8.4 2024/10/28 13:56:17 mcalabre Exp $
*===========================================================================*/
#include <wcsconfig.h>
// Definitions for Large File Support (LFS), i.e. files larger than 2GiB, for
// the fitshdr utility.
// Define to 1 if fseeko() is available (for small or large files). */
#undef HAVE_FSEEKO
// Define _LARGEFILE_SOURCE to get prototypes from stdio.h for the LFS
// functions fseeko() and ftello(), which use an off_t argument in place of
// a long int. Note that gcc by itself does not need _LARGEFILE_SOURCE set,
// but 'gcc -std=c99' does. This may create confusion if '-std=c99' is added
// as a compiler option after configuring.
#undef _LARGEFILE_SOURCE
// Number of bits in a file offset (off_t) on systems where it can be set.
#undef _FILE_OFFSET_BITS
// Define for large files needed on AIX-type systems.
#undef _LARGE_FILES
|