diff options
Diffstat (limited to 'debian/config.h-ja')
-rw-r--r-- | debian/config.h-ja | 162 |
1 files changed, 162 insertions, 0 deletions
diff --git a/debian/config.h-ja b/debian/config.h-ja new file mode 100644 index 0000000..97274bc --- /dev/null +++ b/debian/config.h-ja @@ -0,0 +1,162 @@ +/* + * Configuration for w3m + */ + +#ifndef _CONFIGURED_ +#define _CONFIGURED_ + +/* User Configuration */ + +/* + If you define DICT, you can use dictionary look-up function + in w3m. See README.dict for detail. +*/ +#define DICT + +/* + If you define USE_MARK, you can use set-mark (C-SPC), + goto-next-mark (ESC p), goto-next-mark (ESC n) and + mark-by-regexp ("). +*/ +#define USE_MARK + +/* + If you want to use IPv6, define this symbol. + */ +#define INET6 + +/* + If you want to load and save URL history. + */ +#define USE_HISTORY + +/* + BG_COLOR enables w3m to set background color. + */ +#define BG_COLOR + +/* + VIEW_UNSEENOBJECTS enables w3m to make a link to unseen objects. + e.g. background image. + */ +#define VIEW_UNSEENOBJECTS + +/* + VI_PREC_NUM enables vi-like behavior for '2 SPC' or '2 b' + */ +#define VI_PREC_NUM + + /* + * Do word fill + */ +#undef FORMAT_NICE + +/* + * Support Gopher protocol + */ +#define USE_GOPHER + +/* + * Support NNTP + */ +#define USE_NNTP + +/**********************************************************/ +#ifdef makefile_parameter + +BIN_DIR = /usr/bin +LIB_DIR = /usr/lib/w3m +HELP_DIR = /usr/share/w3m +HELP_FILE = w3mhelp-w3m_en.html +SYS_LIBRARIES = -lnsl -lncurses -lgpm +LOCAL_LIBRARIES = +CC = gcc +MYCFLAGS = -Wall -g -I/usr/include/gc -DDEBIAN +KEYBIND_SRC = keybind.c +KEYBIND_OBJ = keybind.o +EXT= +MATHLIB=-lm +GCLIB=-lgc +GCTARGET= +AR=ar +RANLIB=ranlib +MKDIR=mkdir -p +VERSION=0.1.11-pre+kokb19.1 +MODEL=Linux-monster-ja +#else + +#define DISPLAY_CODE 'E' + +#define JA 0 +#define EN 1 +#define LANG JA +#define KANJI_SYMBOLS +#define COLOR +#define MOUSE +#define USE_GPM +#undef USE_SYSMOUSE +#define MENU +#define USE_COOKIE +#undef USE_SSL +#define USE_SSL_VERIFY +#undef FTPPASS_HOSTNAMEGEN + +#define DEF_EDITOR "sensible-editor" +#define DEF_MAILER "mailx" +#define DEF_EXT_BROWSER "lynx" + +#define LIB_DIR "/usr/lib/w3m" +#define HELP_DIR "/usr/share/w3m" +#define HELP_FILE "w3mhelp-w3m_ja.html" +#define W3MCONFIG "w3mconfig" + +#define RC_DIR "~/.w3m/" +#define BOOKMARK "bookmark.html" +#define CONFIG_FILE "config" +#define KEYMAP_FILE "keymap" +#define MENU_FILE "menu" +#define COOKIE_FILE "cookie" +#define HISTORY_FILE "history" + +#define USER_MAILCAP "~/.mailcap" +#define SYS_MAILCAP "/etc/mailcap" +#define USER_MIMETYPES "~/.mime.types" +#define SYS_MIMETYPES "/etc/mime.types" +#define DEF_SAVE_FILE "index.html" + +#define TERMIOS +#define DIRENT +#define STRCASECMP +#define STRCHR +#define STRERROR +#define SYS_ERRLIST +#undef NOBCOPY +#define HAVE_WAITPID +#define HAVE_STRFTIME + +#define GETCWD +#define GETWD +#define READLINK +#define HAVE_SETENV +#define HAVE_PUTENV +#define READLINK + + +#define SETJMP(env) sigsetjmp(env,1) +#define LONGJMP(env,val) siglongjmp(env,val) +#define JMP_BUF sigjmp_buf + +typedef void MySignalHandler; +#define SIGNAL_ARG int _dummy +#define SIGNAL_ARGLIST 0 +#define SIGNAL_RETURN return + +#undef TABLE_EXPAND +#define NOWRAP 1 +#define NEW_FORM 1 +#define MATRIX 1 +#undef NO_FLOAT_H + +#endif /* makefile_parameter */ +#endif /* _CONFIGURED_ */ + |