Home | History | Annotate | Download | only in vc9
      1 #include "YASM-VERSION.h"
      2 #define yasm__splitpath(path, tail)     yasm__splitpath_win(path, tail)
      3 #define yasm__abspath(path)             yasm__abspath_win(path)
      4 #define yasm__combpath(from, to)        yasm__combpath_win(from, to)
      5 
      6 /* Command name to run C preprocessor */
      7 #define CPP_PROG "cpp"
      8 
      9 /* */
     10 /* #undef ENABLE_NLS */
     11 
     12 /* Define if you have the `abort' function. */
     13 #define HAVE_ABORT 1
     14 
     15 /* */
     16 /* #undef HAVE_CATGETS */
     17 
     18 /* Define to 1 if you have the MacOS X function CFLocaleCopyCurrent in the
     19    CoreFoundation framework. */
     20 /* #undef HAVE_CFLOCALECOPYCURRENT */
     21 
     22 /* Define to 1 if you have the MacOS X function CFPreferencesCopyAppValue in
     23    the CoreFoundation framework. */
     24 /* #undef HAVE_CFPREFERENCESCOPYAPPVALUE */
     25 
     26 /* Define if the GNU dcgettext() function is already present or preinstalled.
     27    */
     28 /* #undef HAVE_DCGETTEXT */
     29 
     30 /* Define to 1 if you have the <direct.h> header file. */
     31 #define HAVE_DIRECT_H 1
     32 
     33 /* Define to 1 if you have the `getcwd' function. */
     34 #define HAVE_GETCWD 1
     35 
     36 /* */
     37 /* #undef HAVE_GETTEXT */
     38 
     39 /* Define if you have the GNU C Library */
     40 /* #undef HAVE_GNU_C_LIBRARY */
     41 
     42 /* Define if you have the iconv() function. */
     43 /* #undef HAVE_ICONV */
     44 
     45 /* Define if you have the <inttypes.h> header file. */
     46 /* #undef HAVE_INTTYPES_H */
     47 
     48 /* */
     49 /* #undef HAVE_LC_MESSAGES */
     50 
     51 /* Define to 1 if you have the <libgen.h> header file. */
     52 /* #undef HAVE_LIBGEN_H */
     53 
     54 /* Define if you have the <memory.h> header file. */
     55 /* #undef HAVE_MEMORY_H */
     56 
     57 /* Define if you have the `mergesort' function. */
     58 /* #undef HAVE_MERGESORT */
     59 
     60 /* Define to 1 if you have the `popen' function. */
     61 /* #undef HAVE_POPEN */
     62 
     63 /* Define if you have the <stdint.h> header file. */
     64 /* #undef HAVE_STDINT_H */
     65 
     66 /* Define if you have the <stdlib.h> header file. */
     67 #define HAVE_STDLIB_H 1
     68 
     69 /* */
     70 /* #undef HAVE_STPCPY */
     71 
     72 /* Define if you have the `strcasecmp' function. */
     73 /* #undef HAVE_STRCASECMP */
     74 
     75 /* Define if you have the `strcmpi' function. */
     76 /* #undef HAVE_STRCMPI */
     77 
     78 /* Define if you have the `stricmp' function. */
     79 /* #undefine HAVE_STRICMP */
     80 
     81 /* Define if you have the <strings.h> header file. */
     82 /* #undef HAVE_STRINGS_H */
     83 
     84 /* Define if you have the <string.h> header file. */
     85 #define HAVE_STRING_H 1
     86 
     87 /* Define if you have the `strncasecmp' function. */
     88 /* #undef HAVE_STRNCASECMP */
     89 
     90 /* Define if you have the `strsep' function. */
     91 /* #undef HAVE_STRSEP */
     92 
     93 /* Define if you have the <sys/stat.h> header file. */
     94 /* #undef HAVE_SYS_STAT_H */
     95 
     96 /* Define if you have the <sys/types.h> header file. */
     97 #define HAVE_SYS_TYPES_H 1
     98 
     99 /* Define if you have the `toascii' function. */
    100 #define HAVE_TOASCII 1
    101 #define toascii __toascii
    102 
    103 /* Define if you have the <unistd.h> header file. */
    104 /* #undef HAVE_UNISTD_H */
    105 
    106 /* Define to 1 if you have the `vsnprintf' function. */
    107 /* #undef HAVE_VSNPRINTF */
    108 
    109 /* Define to 1 if you have the `_stricmp' function. */
    110 #define HAVE__STRICMP 1
    111 
    112 /* Name of package */
    113 #define PACKAGE "yasm"
    114 
    115 /* Define to the address where bug reports for this package should be sent. */
    116 #define PACKAGE_BUGREPORT "bug-yasm (at) tortall.net"
    117 
    118 /* Define to the full name of this package. */
    119 #define PACKAGE_NAME "yasm"
    120 
    121 /* Define to the full name and version of this package. */
    122 /*#define PACKAGE_STRING "yasm HEAD"*/
    123 
    124 /* Define to the one symbol short name of this package. */
    125 #define PACKAGE_TARNAME "yasm"
    126 
    127 /* Define to the version of this package. */
    128 /*#define PACKAGE_VERSION "HEAD"*/
    129 
    130 /* Define if the C compiler supports function prototypes. */
    131 #define PROTOTYPES 1
    132 
    133 /* The size of a `char', as computed by sizeof. */
    134 /* #undef SIZEOF_CHAR */
    135 
    136 /* The size of a `int', as computed by sizeof. */
    137 /* #undef SIZEOF_INT */
    138 
    139 /* The size of a `long', as computed by sizeof. */
    140 /* #undef SIZEOF_LONG */
    141 
    142 /* The size of a `short', as computed by sizeof. */
    143 /* #undef SIZEOF_SHORT */
    144 
    145 /* The size of a `void*', as computed by sizeof. */
    146 /* #undef SIZEOF_VOIDP */
    147 
    148 /* Define if you have the ANSI C header files. */
    149 #define STDC_HEADERS 1
    150 
    151 /* Version number of package */
    152 #define VERSION "HEAD"
    153 
    154 /* Define if using the dmalloc debugging malloc package */
    155 /* #undef WITH_DMALLOC */
    156 
    157 /* Define like PROTOTYPES; this can be used by system headers. */
    158 #define __PROTOTYPES 1
    159 
    160 /* Define to empty if `const' does not conform to ANSI C. */
    161 /* #undef const */
    162 
    163 /* Define as `__inline' if that's what the C compiler calls it, or to nothing
    164    if it is not supported. */
    165 #ifndef __cplusplus
    166 /* #undef inline */
    167 #endif
    168 
    169 /* Define to `unsigned' if <sys/types.h> doesn't define. */
    170 /* #undef size_t */
    171