| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 |
- /*
- * lib/config.h.w32 - configuration file for W32 port
- * Copyright (C) 2004 - 2006 Michael Riepe
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
- * @(#) $Id: config.h.w32,v 1.2 2006/09/07 15:55:42 michael Exp $
- */
- /* Define to empty if the keyword does not work. */
- #undef const
- /* Define if you have a working `mmap' system call. */
- #undef HAVE_MMAP
- /* Define to `long' if <sys/types.h> doesn't define. */
- #undef off_t
- /* Define to `unsigned' if <sys/types.h> doesn't define. */
- #undef size_t
- /* Define if you have the ANSI C header files. */
- #define STDC_HEADERS 1
- /* Define if you want to include extra debugging code */
- #define ENABLE_DEBUG 1
- /* Define if memmove() does not copy overlapping arrays correctly */
- #undef HAVE_BROKEN_MEMMOVE
- /* Define if you have the catgets function. */
- #undef HAVE_CATGETS
- /* Define if you have the dgettext function. */
- #undef HAVE_DGETTEXT
- /* Define if you have the memset function. */
- #define HAVE_MEMSET 1
- /* Define if struct nlist is declared in <elf.h> or <sys/elf.h> */
- #undef HAVE_STRUCT_NLIST_DECLARATION
- /* Define if Elf32_Dyn is declared in <link.h> */
- #undef __LIBELF_NEED_LINK_H
- /* Define if Elf32_Dyn is declared in <sys/link.h> */
- #undef __LIBELF_NEED_SYS_LINK_H
- /* Define to `<elf.h>' or `<sys/elf.h>' if one of them is present */
- #undef __LIBELF_HEADER_ELF_H
- /* Define if you want 64-bit support (and your system supports it) */
- #define __LIBELF64 1
- /* Define if you want 64-bit support, and are running IRIX */
- #undef __LIBELF64_IRIX
- /* Define if you want 64-bit support, and are running Linux */
- #undef __LIBELF64_LINUX
- /* Define if you want symbol versioning (and your system supports it) */
- #define __LIBELF_SYMBOL_VERSIONS 1
- /* Define if symbol versioning uses Sun section type (SHT_SUNW_*) */
- #define __LIBELF_SUN_SYMBOL_VERSIONS 1
- /* Define if symbol versioning uses GNU section types (SHT_GNU_*) */
- #undef __LIBELF_GNU_SYMBOL_VERSIONS
- /* Define to a 64-bit signed integer type if one exists */
- #define __libelf_i64_t __int64
- /* Define to a 64-bit unsigned integer type if one exists */
- #define __libelf_u64_t unsigned __int64
- /* Define to a 32-bit signed integer type if one exists */
- #define __libelf_i32_t int
- /* Define to a 32-bit unsigned integer type if one exists */
- #define __libelf_u32_t unsigned int
- /* Define to a 16-bit signed integer type if one exists */
- #define __libelf_i16_t short int
- /* Define to a 16-bit unsigned integer type if one exists */
- #define __libelf_u16_t unsigned short int
- /* The number of bytes in a __int64. */
- #define SIZEOF___INT64 8
- /* The number of bytes in a int. */
- #define SIZEOF_INT 4
- /* The number of bytes in a long. */
- #define SIZEOF_LONG 4
- /* The number of bytes in a long long. */
- #define SIZEOF_LONG_LONG 0
- /* The number of bytes in a short. */
- #define SIZEOF_SHORT 2
- /* Define if you have the ftruncate function. */
- #undef HAVE_FTRUNCATE
- /* Define if you have the getpagesize function. */
- #undef HAVE_GETPAGESIZE
- /* Define if you have the memcmp function. */
- #define HAVE_MEMCMP 1
- /* Define if you have the memcpy function. */
- #define HAVE_MEMCPY 1
- /* Define if you have the memmove function. */
- #define HAVE_MEMMOVE 1
- /* Define if you have the memset function. */
- #define HAVE_MEMSET 1
- /* Define if you have the <ar.h> header file. */
- #undef HAVE_AR_H
- /* Define if you have the <elf.h> header file. */
- #undef HAVE_ELF_H
- /* Define if you have the <fcntl.h> header file. */
- #undef HAVE_FCNTL_H
- /* Define if you have the <gelf.h> header file. */
- #undef HAVE_GELF_H
- /* Define if you have the <libelf.h> header file. */
- #undef HAVE_LIBELF_H
- /* Define if you have the <link.h> header file. */
- #undef HAVE_LINK_H
- /* Define if you have the <nlist.h> header file. */
- #undef HAVE_NLIST_H
- /* Define if you have the <sys/elf.h> header file. */
- #undef HAVE_SYS_ELF_H
- /* Define if you have the <sys/link.h> header file. */
- #undef HAVE_SYS_LINK_H
- /* Define if you have the <unistd.h> header file. */
- #undef HAVE_UNISTD_H
|