mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-11-08 04:01:58 +01:00
added a list of extractors for the -V list
This commit is contained in:
parent
2a5a391c76
commit
fe499d18c1
@ -14,7 +14,7 @@
|
|||||||
|
|
||||||
#define VERSION "1.2.0-master"
|
#define VERSION "1.2.0-master"
|
||||||
|
|
||||||
#define BUILD 913
|
#define BUILD 914
|
||||||
|
|
||||||
#define HOSTID "mailarchiver"
|
#define HOSTID "mailarchiver"
|
||||||
|
|
||||||
|
35
src/misc.c
35
src/misc.c
@ -31,6 +31,41 @@ int get_build(){
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void get_extractor_list(){
|
||||||
|
printf("Extractors: ");
|
||||||
|
|
||||||
|
#ifdef HAVE_PDFTOTEXT
|
||||||
|
printf("%s ", HAVE_PDFTOTEXT);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef HAVE_CATDOC
|
||||||
|
printf("%s ", HAVE_CATDOC);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef HAVE_CATPPT
|
||||||
|
printf("%s ", HAVE_CATPPT);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef HAVE_XLS2CSV
|
||||||
|
printf("%s ", HAVE_XLS2CSV);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef HAVE_PPTHTML
|
||||||
|
printf("%s ", HAVE_PPTHTML);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef HAVE_UNRTF
|
||||||
|
printf("%s ", HAVE_UNRTF);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef HAVE_TNEF
|
||||||
|
printf("%s ", HAVE_TNEF);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
printf("\n\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
void __fatal(char *s){
|
void __fatal(char *s){
|
||||||
fprintf(stderr, "%s\n", s);
|
fprintf(stderr, "%s\n", s);
|
||||||
exit(1);
|
exit(1);
|
||||||
|
@ -16,6 +16,7 @@
|
|||||||
#define CHK_SSL(err, msg) if ((err)==-1) { printf("ssl error: %s\n", msg); return ERR; }
|
#define CHK_SSL(err, msg) if ((err)==-1) { printf("ssl error: %s\n", msg); return ERR; }
|
||||||
|
|
||||||
int get_build();
|
int get_build();
|
||||||
|
void get_extractor_list();
|
||||||
void __fatal(char *s);
|
void __fatal(char *s);
|
||||||
long tvdiff(struct timeval a, struct timeval b);
|
long tvdiff(struct timeval a, struct timeval b);
|
||||||
int searchStringInBuffer(char *s, int len1, char *what, int len2);
|
int searchStringInBuffer(char *s, int len1, char *what, int len2);
|
||||||
|
@ -373,7 +373,8 @@ int main(int argc, char **argv){
|
|||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
case 'V' :
|
case 'V' :
|
||||||
printf("%s %s, build %d, Janos SUTO <sj@acts.hu>\n\n%s\n\n", PROGNAME, VERSION, get_build(), CONFIGURE_PARAMS);
|
printf("%s %s, build %d, Janos SUTO <sj@acts.hu>\n\n%s\n", PROGNAME, VERSION, get_build(), CONFIGURE_PARAMS);
|
||||||
|
get_extractor_list();
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
case 'h' :
|
case 'h' :
|
||||||
|
Loading…
Reference in New Issue
Block a user