diff options
author | Tobias C. Berner <tcberner@FreeBSD.org> | 2020-08-28 22:48:39 +0000 |
---|---|---|
committer | Tobias C. Berner <tcberner@FreeBSD.org> | 2020-08-28 22:48:39 +0000 |
commit | 54e69ec61ea7c42e88b9e608bde2f460da8311a0 (patch) | |
tree | 8c7ae3ab246aa4567d27a0619f6f0510ae998b87 /converters | |
parent | b2294ed3f477f5e6958cc774ec0504a8e7418425 (diff) |
Notes
Diffstat (limited to 'converters')
-rw-r--r-- | converters/psiconv/files/patch-program_psiconv_psiconv.c | 11 | ||||
-rw-r--r-- | converters/psiconv/files/patch-program_psiconv_psiconv.h | 11 |
2 files changed, 22 insertions, 0 deletions
diff --git a/converters/psiconv/files/patch-program_psiconv_psiconv.c b/converters/psiconv/files/patch-program_psiconv_psiconv.c new file mode 100644 index 000000000000..5bb8b147886d --- /dev/null +++ b/converters/psiconv/files/patch-program_psiconv_psiconv.c @@ -0,0 +1,11 @@ +--- program/psiconv/psiconv.c.orig 2020-08-28 22:46:41 UTC ++++ program/psiconv/psiconv.c +@@ -44,6 +44,8 @@ + #include "psiconv.h" + #include "gen.h" + ++psiconv_list fileformat_list; /* of struct psiconv_fileformat */ ++ + static void print_help(void); + static void print_version(void); + static void strtoupper(char *str); diff --git a/converters/psiconv/files/patch-program_psiconv_psiconv.h b/converters/psiconv/files/patch-program_psiconv_psiconv.h new file mode 100644 index 000000000000..a2d8c96f6d24 --- /dev/null +++ b/converters/psiconv/files/patch-program_psiconv_psiconv.h @@ -0,0 +1,11 @@ +--- program/psiconv/psiconv.h.orig 2020-08-28 22:46:41 UTC ++++ program/psiconv/psiconv.h +@@ -52,7 +52,7 @@ typedef struct fileformat_s { + output_function *output; + } *fileformat; + +-psiconv_list fileformat_list; /* of struct psiconv_fileformat */ ++extern psiconv_list fileformat_list; /* of struct psiconv_fileformat */ + + + #endif /* PSICONV_H */ |