Kenny Root | 3c276f4 | 2009-11-08 12:50:26 -0600 | [diff] [blame] | 1 | /* config.h. Generated by configure. */ |
| 2 | /* config.h.in. Generated from configure.in by autoheader. */ |
| 3 | |
| 4 | /* define to align allocated memory on 32-byte boundaries */ |
| 5 | #define FLAC__ALIGN_MALLOC_DATA 1 |
| 6 | |
| 7 | /* define if building for ia32/i386 */ |
| 8 | /* #define FLAC__CPU_IA32 1 */ |
| 9 | |
| 10 | /* define if building for PowerPC */ |
| 11 | /* #undef FLAC__CPU_PPC */ |
| 12 | |
| 13 | /* define if building for SPARC */ |
| 14 | /* #undef FLAC__CPU_SPARC */ |
| 15 | |
| 16 | /* define if you are compiling for PowerPC and have the 'as' assembler */ |
| 17 | /* #undef FLAC__HAS_AS */ |
| 18 | |
| 19 | /* define if you have docbook-to-man or docbook2man */ |
| 20 | #define FLAC__HAS_DOCBOOK_TO_MAN 1 |
| 21 | |
| 22 | /* define if you are compiling for PowerPC and have the 'gas' assembler */ |
| 23 | /* #define FLAC__HAS_GAS 0 */ |
| 24 | |
| 25 | /* define if you are compiling for x86 and have the NASM assembler */ |
| 26 | /* #define FLAC__HAS_NASM 0 */ |
| 27 | |
| 28 | /* define if you have the ogg library */ |
| 29 | /* #undef FLAC__HAS_OGG */ |
| 30 | |
| 31 | /* define to disable use of assembly code */ |
| 32 | #define FLAC__NO_ASM 1 |
| 33 | |
| 34 | /* define if your operating system supports SSE instructions */ |
| 35 | /* #undef FLAC__SSE_OS */ |
| 36 | |
| 37 | /* define if building for Darwin / MacOS X */ |
| 38 | /* #undef FLAC__SYS_DARWIN */ |
| 39 | |
| 40 | /* define if building for Linux */ |
| 41 | /* #undef FLAC__SYS_LINUX */ |
| 42 | |
| 43 | /* define to enable use of 3Dnow! instructions */ |
| 44 | /* #define FLAC__USE_3DNOW 0 */ |
| 45 | |
| 46 | /* define to enable use of Altivec instructions */ |
| 47 | /* #define FLAC__USE_ALTIVEC 0 */ |
| 48 | |
| 49 | /* Define to 1 if you have the <dlfcn.h> header file. */ |
| 50 | #define HAVE_DLFCN_H 1 |
| 51 | |
| 52 | /* Define to 1 if fseeko (and presumably ftello) exists and is declared. */ |
| 53 | #define HAVE_FSEEKO 1 |
| 54 | |
| 55 | /* Define to 1 if you have the `getopt_long' function. */ |
| 56 | #define HAVE_GETOPT_LONG 1 |
| 57 | |
| 58 | /* Define if you have the iconv() function. */ |
| 59 | #define HAVE_ICONV 1 |
| 60 | |
| 61 | /* Define to 1 if you have the <inttypes.h> header file. */ |
| 62 | #define HAVE_INTTYPES_H 1 |
| 63 | |
| 64 | /* Define if you have <langinfo.h> and nl_langinfo(CODESET). */ |
| 65 | /* #define HAVE_LANGINFO_CODESET 0 */ |
| 66 | |
| 67 | /* Define to 1 if you have the <memory.h> header file. */ |
| 68 | #define HAVE_MEMORY_H 1 |
| 69 | |
| 70 | /* Define to 1 if the system has the type `socklen_t'. */ |
| 71 | #define HAVE_SOCKLEN_T 1 |
| 72 | |
| 73 | /* Define to 1 if you have the <stdint.h> header file. */ |
| 74 | #define HAVE_STDINT_H 1 |
| 75 | |
| 76 | /* Define to 1 if you have the <stdlib.h> header file. */ |
| 77 | #define HAVE_STDLIB_H 1 |
| 78 | |
| 79 | /* Define to 1 if you have the <strings.h> header file. */ |
| 80 | #define HAVE_STRINGS_H 1 |
| 81 | |
| 82 | /* Define to 1 if you have the <string.h> header file. */ |
| 83 | #define HAVE_STRING_H 1 |
| 84 | |
| 85 | /* Define to 1 if you have the <sys/stat.h> header file. */ |
| 86 | #define HAVE_SYS_STAT_H 1 |
| 87 | |
| 88 | /* Define to 1 if you have the <sys/types.h> header file. */ |
| 89 | #define HAVE_SYS_TYPES_H 1 |
| 90 | |
| 91 | /* Define to 1 if you have the <unistd.h> header file. */ |
| 92 | #define HAVE_UNISTD_H 1 |
| 93 | |
| 94 | /* Define as const if the declaration of iconv() needs const. */ |
| 95 | #define ICONV_CONST |
| 96 | |
| 97 | /* Name of package */ |
| 98 | #define PACKAGE "flac" |
| 99 | |
| 100 | /* Define to the address where bug reports for this package should be sent. */ |
| 101 | #define PACKAGE_BUGREPORT "" |
| 102 | |
| 103 | /* Define to the full name of this package. */ |
| 104 | #define PACKAGE_NAME "" |
| 105 | |
| 106 | /* Define to the full name and version of this package. */ |
| 107 | #define PACKAGE_STRING "" |
| 108 | |
| 109 | /* Define to the one symbol short name of this package. */ |
| 110 | #define PACKAGE_TARNAME "" |
| 111 | |
| 112 | /* Define to the version of this package. */ |
| 113 | #define PACKAGE_VERSION "" |
| 114 | |
| 115 | /* The size of a `void*', as computed by sizeof. */ |
Amit Pundir | a0286db | 2014-03-05 10:20:13 +0800 | [diff] [blame] | 116 | #if __LP64__ |
| 117 | #define SIZEOF_VOIDP 8 |
| 118 | #else |
Kenny Root | 3c276f4 | 2009-11-08 12:50:26 -0600 | [diff] [blame] | 119 | #define SIZEOF_VOIDP 4 |
Amit Pundir | a0286db | 2014-03-05 10:20:13 +0800 | [diff] [blame] | 120 | #endif |
Kenny Root | 3c276f4 | 2009-11-08 12:50:26 -0600 | [diff] [blame] | 121 | |
| 122 | /* Define to 1 if you have the ANSI C header files. */ |
| 123 | #define STDC_HEADERS 1 |
| 124 | |
| 125 | /* Version number of package */ |
Robert Shih | 31e4f31 | 2015-01-05 17:35:54 -0800 | [diff] [blame] | 126 | #define VERSION "1.3.1" |
Kenny Root | 3c276f4 | 2009-11-08 12:50:26 -0600 | [diff] [blame] | 127 | |
| 128 | /* Define to 1 if your processor stores words with the most significant byte |
| 129 | first (like Motorola and SPARC, unlike Intel and VAX). */ |
| 130 | /* #undef WORDS_BIGENDIAN */ |
| 131 | |
| 132 | /* Number of bits in a file offset, on hosts where this is settable. */ |
Elliott Hughes | 54029a0 | 2015-02-06 22:13:22 -0800 | [diff] [blame] | 133 | /* #define _FILE_OFFSET_BITS 64 */ |
Kenny Root | 3c276f4 | 2009-11-08 12:50:26 -0600 | [diff] [blame] | 134 | |
| 135 | /* Define to 1 to make fseeko visible on some hosts (e.g. glibc 2.2). */ |
| 136 | /* #undef _LARGEFILE_SOURCE */ |
| 137 | |
| 138 | /* Define for large files, on AIX-style hosts. */ |
| 139 | /* #undef _LARGE_FILES */ |