diff options
-rwxr-xr-x | contrib/tsearch/makedict/makedict.pl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/contrib/tsearch/makedict/makedict.pl b/contrib/tsearch/makedict/makedict.pl index 65c8af3bd2b..34e77cb95b2 100755 --- a/contrib/tsearch/makedict/makedict.pl +++ b/contrib/tsearch/makedict/makedict.pl @@ -4,7 +4,7 @@ use Getopt::Std; use locale; my %opt; -getopts('l:he:s:ap:om:f', \%opt); +getopts('l:he:s:ap:o:m:f', \%opt); if ( $opt{h} || ! ($opt{e}||$opt{s}) || !$opt{l} ) { print<<EOT; @@ -94,6 +94,8 @@ print {$fh} <<EOT; */ #ifdef DICT_BODY +#include <ctype.h> + typedef struct { uint8 val; uint8 flag; |