Line 173... |
Line 173... |
#ifdef ENABLE_PLUGINS
|
#ifdef ENABLE_PLUGINS
|
OPTION_PLUGIN,
|
OPTION_PLUGIN,
|
OPTION_PLUGIN_OPT,
|
OPTION_PLUGIN_OPT,
|
#endif /* ENABLE_PLUGINS */
|
#endif /* ENABLE_PLUGINS */
|
OPTION_DEFAULT_SCRIPT,
|
OPTION_DEFAULT_SCRIPT,
|
|
OPTION_PRINT_OUTPUT_FORMAT,
|
};
|
};
|
|
|
/* The long options. This structure is used for both the option
|
/* The long options. This structure is used for both the option
|
parsing and the help text. */
|
parsing and the help text. */
|
|
|
Line 489... |
Line 490... |
" the command line"),
|
" the command line"),
|
ONE_DASH },
|
ONE_DASH },
|
{ {"oformat", required_argument, NULL, OPTION_OFORMAT},
|
{ {"oformat", required_argument, NULL, OPTION_OFORMAT},
|
'\0', N_("TARGET"), N_("Specify target of output file"),
|
'\0', N_("TARGET"), N_("Specify target of output file"),
|
EXACTLY_TWO_DASHES },
|
EXACTLY_TWO_DASHES },
|
|
{ {"print-output-format", no_argument, NULL, OPTION_PRINT_OUTPUT_FORMAT},
|
|
'\0', NULL, N_("Print default output format"), TWO_DASHES },
|
{ {"qmagic", no_argument, NULL, OPTION_IGNORE},
|
{ {"qmagic", no_argument, NULL, OPTION_IGNORE},
|
'\0', NULL, N_("Ignored for Linux compatibility"), ONE_DASH },
|
'\0', NULL, N_("Ignored for Linux compatibility"), ONE_DASH },
|
{ {"reduce-memory-overheads", no_argument, NULL,
|
{ {"reduce-memory-overheads", no_argument, NULL,
|
OPTION_REDUCE_MEMORY_OVERHEADS},
|
OPTION_REDUCE_MEMORY_OVERHEADS},
|
'\0', NULL, N_("Reduce memory overheads, possibly taking much longer"),
|
'\0', NULL, N_("Reduce memory overheads, possibly taking much longer"),
|
Line 1057... |
Line 1060... |
lang_add_output (optarg, 0);
|
lang_add_output (optarg, 0);
|
break;
|
break;
|
case OPTION_OFORMAT:
|
case OPTION_OFORMAT:
|
lang_add_output_format (optarg, NULL, NULL, 0);
|
lang_add_output_format (optarg, NULL, NULL, 0);
|
break;
|
break;
|
|
case OPTION_PRINT_OUTPUT_FORMAT:
|
|
command_line.print_output_format = TRUE;
|
|
break;
|
#ifdef ENABLE_PLUGINS
|
#ifdef ENABLE_PLUGINS
|
case OPTION_PLUGIN:
|
case OPTION_PLUGIN:
|
if (plugin_opt_plugin (optarg))
|
if (plugin_opt_plugin (optarg))
|
einfo (_("%P%F: %s: error loading plugin\n"),
|
einfo (_("%P%F: %s: error loading plugin\n"),
|
plugin_error_plugin ());
|
plugin_error_plugin ());
|