change CRLF to LF in a Windows source file
This commit is contained in:
parent
6a5cecee0a
commit
50ddbee87f
|
@ -1,52 +1,52 @@
|
||||||
|
|
||||||
/* This file contains information for Windows that is collected using the
|
/* This file contains information for Windows that is collected using the
|
||||||
* "configure" script on other platforms. See src/racket/mzconfig.h.in for
|
* "configure" script on other platforms. See src/racket/mzconfig.h.in for
|
||||||
* things that should be defined here.
|
* things that should be defined here.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __MZSCHEME_CONFIGURATION_INFO__
|
#ifndef __MZSCHEME_CONFIGURATION_INFO__
|
||||||
#define __MZSCHEME_CONFIGURATION_INFO__
|
#define __MZSCHEME_CONFIGURATION_INFO__
|
||||||
|
|
||||||
|
|
||||||
/* Undefined items are not used on Windows. */
|
/* Undefined items are not used on Windows. */
|
||||||
|
|
||||||
/* The size of a `char', as computed by sizeof. */
|
/* The size of a `char', as computed by sizeof. */
|
||||||
#undef SIZEOF_CHAR
|
#undef SIZEOF_CHAR
|
||||||
|
|
||||||
/* The size of a `int', as computed by sizeof. */
|
/* The size of a `int', as computed by sizeof. */
|
||||||
#undef SIZEOF_INT
|
#undef SIZEOF_INT
|
||||||
|
|
||||||
/* The size of a `short', as computed by sizeof. */
|
/* The size of a `short', as computed by sizeof. */
|
||||||
#undef SIZEOF_SHORT
|
#undef SIZEOF_SHORT
|
||||||
|
|
||||||
/* The size of a `long', as computed by sizeof. */
|
/* The size of a `long', as computed by sizeof. */
|
||||||
#undef SIZEOF_LONG
|
#undef SIZEOF_LONG
|
||||||
|
|
||||||
/* The size of a `long long', as computed by sizeof. */
|
/* The size of a `long long', as computed by sizeof. */
|
||||||
#undef SIZEOF_LONG_LONG
|
#undef SIZEOF_LONG_LONG
|
||||||
|
|
||||||
#ifdef _WIN64
|
#ifdef _WIN64
|
||||||
# define SIZEOF_VOID_P 8
|
# define SIZEOF_VOID_P 8
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Direction of stack growth: 1 = up, -1 = down, 0 = unknown */
|
/* Direction of stack growth: 1 = up, -1 = down, 0 = unknown */
|
||||||
#define STACK_DIRECTION -1
|
#define STACK_DIRECTION -1
|
||||||
|
|
||||||
/* whether nl_langinfo works */
|
/* whether nl_langinfo works */
|
||||||
#undef HAVE_CODESET
|
#undef HAVE_CODESET
|
||||||
|
|
||||||
/* whether getaddrinfo works */
|
/* whether getaddrinfo works */
|
||||||
#define HAVE_GETADDRINFO 1
|
#define HAVE_GETADDRINFO 1
|
||||||
|
|
||||||
/* Enable futures: */
|
/* Enable futures: */
|
||||||
#define MZ_USE_FUTURES
|
#define MZ_USE_FUTURES
|
||||||
|
|
||||||
/* Enable places --- 3m only: */
|
/* Enable places --- 3m only: */
|
||||||
#ifdef MZ_PRECISE_GC
|
#ifdef MZ_PRECISE_GC
|
||||||
# define MZ_USE_PLACES
|
# define MZ_USE_PLACES
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Enable single-precision floats: */
|
/* Enable single-precision floats: */
|
||||||
#define USE_SINGLE_FLOATS
|
#define USE_SINGLE_FLOATS
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue
Block a user