2004-10-29 02:55:08 -04:00
|
|
|
#ifndef _CONFIG_H_
|
|
|
|
#define _CONFIG_H_
|
|
|
|
|
2008-01-27 02:28:26 -05:00
|
|
|
/* UTF8 input and output */
|
2004-10-29 02:55:08 -04:00
|
|
|
#define UTF8_INPUT_ENABLE
|
|
|
|
#define UTF8_OUTPUT_ENABLE
|
|
|
|
|
2008-01-27 02:28:26 -05:00
|
|
|
/* invert characters invalid in Shift_JIS to CP932 */
|
2004-10-29 02:55:08 -04:00
|
|
|
#define SHIFTJIS_CP932
|
|
|
|
|
2008-01-27 02:28:26 -05:00
|
|
|
/* fix input encoding when given by option */
|
2004-10-29 02:55:08 -04:00
|
|
|
#define INPUT_CODE_FIX
|
|
|
|
|
2008-01-27 02:28:26 -05:00
|
|
|
/* --overwrite option */
|
2004-10-29 02:55:08 -04:00
|
|
|
/* by Satoru Takabayashi <ccsatoru@vega.aichi-u.ac.jp> */
|
|
|
|
#define OVERWRITE
|
|
|
|
|
2008-01-27 02:28:26 -05:00
|
|
|
/* --cap-input, --url-input option */
|
2004-10-29 02:55:08 -04:00
|
|
|
#define INPUT_OPTION
|
|
|
|
|
2008-01-27 02:28:26 -05:00
|
|
|
/* --numchar-input option */
|
2004-10-29 02:55:08 -04:00
|
|
|
#define NUMCHAR_OPTION
|
|
|
|
|
2008-01-27 02:28:26 -05:00
|
|
|
/* --debug, --no-output option */
|
2004-10-29 02:55:08 -04:00
|
|
|
#define CHECK_OPTION
|
|
|
|
|
2005-02-02 13:36:18 -05:00
|
|
|
/* JIS X0212 */
|
|
|
|
#define X0212_ENABLE
|
|
|
|
|
2008-01-27 02:28:26 -05:00
|
|
|
/* --exec-in, --exec-out option
|
|
|
|
* require pipe, fork, execvp and so on.
|
|
|
|
* please undef this on MS-DOS, MinGW
|
|
|
|
* this is still buggy arround child process
|
2004-10-29 02:55:08 -04:00
|
|
|
*/
|
|
|
|
/* #define EXEC_IO */
|
|
|
|
|
2005-07-05 11:19:36 -04:00
|
|
|
/* Unicode Normalization */
|
|
|
|
#define UNICODE_NORMALIZATION
|
|
|
|
|
2008-01-27 02:28:26 -05:00
|
|
|
/*
|
|
|
|
* Select Default Output Encoding
|
|
|
|
*
|
|
|
|
*/
|
2004-10-29 02:55:08 -04:00
|
|
|
|
2008-01-27 03:55:31 -05:00
|
|
|
/* #define DEFAULT_CODE_JIS */
|
|
|
|
/* #define DEFAULT_CODE_SJIS */
|
|
|
|
/* #define DEFAULT_CODE_EUC */
|
|
|
|
/* #define DEFAULT_CODE_UTF8 */
|
|
|
|
/* #define DEFAULT_CODE_LOCALE */
|
2007-12-21 02:50:31 -05:00
|
|
|
|
2004-10-29 02:55:08 -04:00
|
|
|
#endif /* _CONFIG_H_ */
|
2008-01-27 03:55:31 -05:00
|
|
|
|