tools/elf4rom/libs/libelf-0.8.10/lib/config.h.w32
changeset 34 92d87f2e53c2
equal deleted inserted replaced
33:1af5c1be89f8 34:92d87f2e53c2
       
     1 /*
       
     2  * lib/config.h.w32 - configuration file for W32 port
       
     3  * Copyright (C) 2004 - 2006 Michael Riepe
       
     4  *
       
     5  * This library is free software; you can redistribute it and/or
       
     6  * modify it under the terms of the GNU Library General Public
       
     7  * License as published by the Free Software Foundation; either
       
     8  * version 2 of the License, or (at your option) any later version.
       
     9  *
       
    10  * This library is distributed in the hope that it will be useful,
       
    11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
       
    12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
       
    13  * Library General Public License for more details.
       
    14  *
       
    15  * You should have received a copy of the GNU Library General Public
       
    16  * License along with this library; if not, write to the Free Software
       
    17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
       
    18  *
       
    19  * @(#) $Id: config.h.w32,v 1.2 2006/09/07 15:55:42 michael Exp $
       
    20  */
       
    21 
       
    22 /* Define to empty if the keyword does not work.  */
       
    23 #undef const
       
    24 
       
    25 /* Define if you have a working `mmap' system call.  */
       
    26 #undef HAVE_MMAP
       
    27 
       
    28 /* Define to `long' if <sys/types.h> doesn't define.  */
       
    29 #undef off_t
       
    30 
       
    31 /* Define to `unsigned' if <sys/types.h> doesn't define.  */
       
    32 #undef size_t
       
    33 
       
    34 /* Define if you have the ANSI C header files.  */
       
    35 #define STDC_HEADERS 1
       
    36 
       
    37 /* Define if you want to include extra debugging code */
       
    38 #define ENABLE_DEBUG 1
       
    39 
       
    40 /* Define if memmove() does not copy overlapping arrays correctly */
       
    41 #undef HAVE_BROKEN_MEMMOVE
       
    42 
       
    43 /* Define if you have the catgets function. */
       
    44 #undef HAVE_CATGETS
       
    45 
       
    46 /* Define if you have the dgettext function. */
       
    47 #undef HAVE_DGETTEXT
       
    48 
       
    49 /* Define if you have the memset function.  */
       
    50 #define HAVE_MEMSET 1
       
    51 
       
    52 /* Define if struct nlist is declared in <elf.h> or <sys/elf.h> */
       
    53 #undef HAVE_STRUCT_NLIST_DECLARATION
       
    54 
       
    55 /* Define if Elf32_Dyn is declared in <link.h> */
       
    56 #undef __LIBELF_NEED_LINK_H
       
    57 
       
    58 /* Define if Elf32_Dyn is declared in <sys/link.h> */
       
    59 #undef __LIBELF_NEED_SYS_LINK_H
       
    60 
       
    61 /* Define to `<elf.h>' or `<sys/elf.h>' if one of them is present */
       
    62 #undef __LIBELF_HEADER_ELF_H
       
    63 
       
    64 /* Define if you want 64-bit support (and your system supports it) */
       
    65 #define __LIBELF64 1
       
    66 
       
    67 /* Define if you want 64-bit support, and are running IRIX */
       
    68 #undef __LIBELF64_IRIX
       
    69 
       
    70 /* Define if you want 64-bit support, and are running Linux */
       
    71 #undef __LIBELF64_LINUX
       
    72 
       
    73 /* Define if you want symbol versioning (and your system supports it) */
       
    74 #define __LIBELF_SYMBOL_VERSIONS 1
       
    75 
       
    76 /* Define if symbol versioning uses Sun section type (SHT_SUNW_*) */
       
    77 #define __LIBELF_SUN_SYMBOL_VERSIONS 1
       
    78 
       
    79 /* Define if symbol versioning uses GNU section types (SHT_GNU_*) */
       
    80 #undef __LIBELF_GNU_SYMBOL_VERSIONS
       
    81 
       
    82 /* Define to a 64-bit signed integer type if one exists */
       
    83 #define __libelf_i64_t __int64
       
    84 
       
    85 /* Define to a 64-bit unsigned integer type if one exists */
       
    86 #define __libelf_u64_t unsigned __int64
       
    87 
       
    88 /* Define to a 32-bit signed integer type if one exists */
       
    89 #define __libelf_i32_t int
       
    90 
       
    91 /* Define to a 32-bit unsigned integer type if one exists */
       
    92 #define __libelf_u32_t unsigned int
       
    93 
       
    94 /* Define to a 16-bit signed integer type if one exists */
       
    95 #define __libelf_i16_t short int
       
    96 
       
    97 /* Define to a 16-bit unsigned integer type if one exists */
       
    98 #define __libelf_u16_t unsigned short int
       
    99 
       
   100 /* The number of bytes in a __int64.  */
       
   101 #define SIZEOF___INT64 8
       
   102 
       
   103 /* The number of bytes in a int.  */
       
   104 #define SIZEOF_INT 4
       
   105 
       
   106 /* The number of bytes in a long.  */
       
   107 #define SIZEOF_LONG 4
       
   108 
       
   109 /* The number of bytes in a long long.  */
       
   110 #define SIZEOF_LONG_LONG 0
       
   111 
       
   112 /* The number of bytes in a short.  */
       
   113 #define SIZEOF_SHORT 2
       
   114 
       
   115 /* Define if you have the ftruncate function.  */
       
   116 #undef HAVE_FTRUNCATE
       
   117 
       
   118 /* Define if you have the getpagesize function.  */
       
   119 #undef HAVE_GETPAGESIZE
       
   120 
       
   121 /* Define if you have the memcmp function.  */
       
   122 #define HAVE_MEMCMP 1
       
   123 
       
   124 /* Define if you have the memcpy function.  */
       
   125 #define HAVE_MEMCPY 1
       
   126 
       
   127 /* Define if you have the memmove function.  */
       
   128 #define HAVE_MEMMOVE 1
       
   129 
       
   130 /* Define if you have the memset function.  */
       
   131 #define HAVE_MEMSET 1
       
   132 
       
   133 /* Define if you have the <ar.h> header file.  */
       
   134 #undef HAVE_AR_H
       
   135 
       
   136 /* Define if you have the <elf.h> header file.  */
       
   137 #undef HAVE_ELF_H
       
   138 
       
   139 /* Define if you have the <fcntl.h> header file.  */
       
   140 #undef HAVE_FCNTL_H
       
   141 
       
   142 /* Define if you have the <gelf.h> header file.  */
       
   143 #undef HAVE_GELF_H
       
   144 
       
   145 /* Define if you have the <libelf.h> header file.  */
       
   146 #undef HAVE_LIBELF_H
       
   147 
       
   148 /* Define if you have the <link.h> header file.  */
       
   149 #undef HAVE_LINK_H
       
   150 
       
   151 /* Define if you have the <nlist.h> header file.  */
       
   152 #undef HAVE_NLIST_H
       
   153 
       
   154 /* Define if you have the <sys/elf.h> header file.  */
       
   155 #undef HAVE_SYS_ELF_H
       
   156 
       
   157 /* Define if you have the <sys/link.h> header file.  */
       
   158 #undef HAVE_SYS_LINK_H
       
   159 
       
   160 /* Define if you have the <unistd.h> header file.  */
       
   161 #undef HAVE_UNISTD_H