about summary refs log tree commit diff stats
path: root/BUILD/VS2008X/lynx/lynx_cfg.h
diff options
context:
space:
mode:
authorThomas E. Dickey <dickey@invisible-island.net>2007-07-02 00:15:38 -0400
committerThomas E. Dickey <dickey@invisible-island.net>2007-07-02 00:15:38 -0400
commit387b9cbf38dddc3adbb811e03345576e35df3725 (patch)
tree90940c6cde94dc67ef37e97561580435b9469b9e /BUILD/VS2008X/lynx/lynx_cfg.h
parentfa5da88cfe856e4c69d3dfb12e68bb56d0c69c9e (diff)
downloadlynx-snapshots-387b9cbf38dddc3adbb811e03345576e35df3725.tar.gz
snapshot of project "lynx", label v2-8-7dev_5b
Diffstat (limited to 'BUILD/VS2008X/lynx/lynx_cfg.h')
-rw-r--r--BUILD/VS2008X/lynx/lynx_cfg.h70
1 files changed, 70 insertions, 0 deletions
diff --git a/BUILD/VS2008X/lynx/lynx_cfg.h b/BUILD/VS2008X/lynx/lynx_cfg.h
new file mode 100644
index 00000000..a526bb0a
--- /dev/null
+++ b/BUILD/VS2008X/lynx/lynx_cfg.h
@@ -0,0 +1,70 @@
+// $LynxId: lynx_cfg.h,v 1.1 2007/06/30 14:30:52 tom Exp $

+// definitions abstracted from makefile.msc

+

+#ifndef LYNX_CFG_H

+#define LYNX_CFG_H 1

+

+#define __WIN32__

+#define _WINDOWS

+#define _WIN32_WINNT 0x0400

+#define WIN32_LEAN_AND_MEAN 1	// fixes redefinition of winsock2.h

+

+#define ACCESS_AUTH 1

+#define CJK_EX 1

+#define DIRED_SUPPORT 1

+#define DISP_PARTIAL 1

+#define DOSPATH 1

+#define EXP_ALT_BINDINGS 1

+#define EXP_CMD_LOGGING 1

+#define EXP_JUSTIFY_ELTS 1

+#define EXP_NESTED_TABLES 1

+#define HAVE_KEYPAD 1

+#define HAVE_PUTENV 1

+#define LONG_LIST 1

+#define NDEBUG 1

+#define NO_CONFIG_INFO 1

+#define NO_CUSERID 1

+#define NO_FILIO_H 1

+#define NO_TTYTYPE 1

+#define NO_UNISTD_H 1

+#define NO_UTMP 1

+#define NOSIGHUP 1

+#define NOUSERS 1

+#define OK_OVERRIDE 1

+#define SH_EX 1

+#define USE_EXTERNALS 1

+#define USE_FILE_UPLOAD 1

+#define USE_MULTIBYTE_CURSES 1

+#define USE_PERSISTENT_COOKIES 1

+#define USE_PRETTYSRC 1

+#define USE_READPROGRESS 1

+#define USE_SCROLLBAR 1

+#define USE_SOURCE_CACHE 1

+#define USE_ZLIB 1

+#define WIN_EX 1

+

+// definitions to account for using this file (see HTUtils.h, userdefs.h)

+#define ANSI_VARARGS 1

+#define HAVE_GETCWD 1

+#define HAVE_STDARG_H 1

+#define HAVE_STDLIB_H 1

+#define LYNX_CFG_FILE "./lynx.cfg"

+#define UNDERLINE_LINKS FALSE

+#define socklen_t int

+

+// configuration choices

+#define PDCURSES 1

+#define USE_WINSOCK2_H 1

+

+#ifdef PDCURSES

+#define USE_COLOR_STYLE 1

+#define COLOR_CURSES 1

+#define FANCY_CURSES 1

+#endif

+

+#pragma warning (disable : 4244) /* conversion from 'xxx' to 'yyy', possible loss of data */

+#pragma warning (disable : 4267) /* conversion from 'xxx' to 'yyy', possible loss of data */

+#pragma warning (disable : 4311) /* 'type cast': pointer truncation from 'xxx' to 'yyy' FIXME */

+#pragma warning (disable : 4996) /* 'xxx': This function or variable may be unsafe. Consider using yyy instead. */

+

+#endif /* LYNX_CFG_H */
\ No newline at end of file