Codebase list libmawk / debian/1.0.2-3
fix compilation for GCC 10 Bdale Garbee 3 years ago
3 changed file(s) with 20 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 libmawk (1.0.2-3) unstable; urgency=medium
1
2 * trivial patch to allow for compilation with GCC 10, closes: #957451
3
4 -- Bdale Garbee <bdale@gag.com> Fri, 07 Aug 2020 08:49:48 -0600
5
06 libmawk (1.0.2-2) unstable; urgency=medium
17
28 * source-only upload to allow migration to testing, closes: #951449
0 diff --git a/src/libmawk/vio_fifo.h b/src/libmawk/vio_fifo.h
1 index f170c22..a2d751d 100644
2 --- a/src/libmawk/vio_fifo.h
3 +++ b/src/libmawk/vio_fifo.h
4 @@ -14,7 +14,7 @@ typedef struct mawk_vio_fifo_s {
5 int eof_from_app; /* 1 if there won't be more from the app or the app won't accept more data */
6 } mawk_vio_fifo_t;
7
8 -const mawk_vio_imp_t mawk_vio_fifo_imp;
9 +extern const mawk_vio_imp_t mawk_vio_fifo_imp;
10
11 mawk_vio_t *mawk_vio_fifo_open(mawk_state_t *MAWK, const char *name, mawk_vio_open_mode_t mode);
12
00 fix-example-man.patch
1 extern-for-gcc-10.patch