Fixed install problem
This commit is contained in:
parent
c066fdb428
commit
c9664c93d9
@ -61,6 +61,8 @@
|
|||||||
#include "../config.h"
|
#include "../config.h"
|
||||||
#include "mbselib.h"
|
#include "mbselib.h"
|
||||||
|
|
||||||
|
#define PROGRAM "mbcharsetc"
|
||||||
|
|
||||||
#ifndef USE_EXPERIMENT
|
#ifndef USE_EXPERIMENT
|
||||||
|
|
||||||
#include "mbcharsetc.h"
|
#include "mbcharsetc.h"
|
||||||
@ -69,7 +71,6 @@
|
|||||||
char *str_copy(char *, size_t, char *);
|
char *str_copy(char *, size_t, char *);
|
||||||
|
|
||||||
#define strieq(a,b) (strcasecmp ((a),(b)) == 0)
|
#define strieq(a,b) (strcasecmp ((a),(b)) == 0)
|
||||||
#define PROGRAM "mbcharsetc"
|
|
||||||
#define BUFFERSIZE (32*1024) /* Global buffer */
|
#define BUFFERSIZE (32*1024) /* Global buffer */
|
||||||
#define BUF_COPY(d,s) str_copy (d,sizeof(d),s)
|
#define BUF_COPY(d,s) str_copy (d,sizeof(d),s)
|
||||||
|
|
||||||
@ -363,6 +364,7 @@ int compile_map(char *in, char *out)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
void usage(void)
|
void usage(void)
|
||||||
{
|
{
|
||||||
@ -378,25 +380,23 @@ int main(int argc, char **argv)
|
|||||||
{
|
{
|
||||||
int ret = MBERR_OK;
|
int ret = MBERR_OK;
|
||||||
char *name_in, *name_out;
|
char *name_in, *name_out;
|
||||||
|
#ifdef USE_EXPERIMENT
|
||||||
|
FILE *fp;
|
||||||
|
#endif
|
||||||
|
|
||||||
if (argc != 3)
|
if (argc != 3)
|
||||||
usage();
|
usage();
|
||||||
|
|
||||||
name_in = argv[1];
|
name_in = argv[1];
|
||||||
name_out = argv[2];
|
name_out = argv[2];
|
||||||
|
#ifdef USE_EXPERIMENT
|
||||||
|
fp = fopen(name_out, "a");
|
||||||
|
fclose(fp);
|
||||||
|
#else
|
||||||
ret = compile_map(name_in, name_out);
|
ret = compile_map(name_in, name_out);
|
||||||
|
#endif
|
||||||
|
|
||||||
exit(ret);
|
exit(ret);
|
||||||
}
|
}
|
||||||
|
|
||||||
#else
|
|
||||||
|
|
||||||
|
|
||||||
int main(int argc, char **argv)
|
|
||||||
{
|
|
||||||
printf("program disabled by configure option\n");
|
|
||||||
exit(0);
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user