Skip to content

Commit 009c7b2

Browse files
committed
patch 8.0.0162: build error on Fedora 23
Problem: Build error on Fedora 23 with small features and gnome2. Solution: Undefine ngettext(). (Hirohito Higashi)
1 parent 4d05040 commit 009c7b2

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

src/gui_gtk.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,9 @@
5151
# ifdef _
5252
# undef _
5353
# endif
54+
# ifdef ngettext
55+
# undef ngettext
56+
# endif
5457
# ifdef N_
5558
# undef N_
5659
# endif

src/gui_gtk_x11.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@
3535
# ifdef _
3636
# undef _
3737
# endif
38+
# ifdef ngettext
39+
# undef ngettext
40+
# endif
3841
# ifdef N_
3942
# undef N_
4043
# endif

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -764,6 +764,8 @@ static char *(features[]) =
764764

765765
static int included_patches[] =
766766
{ /* Add new patch number below this line */
767+
/**/
768+
162,
767769
/**/
768770
161,
769771
/**/

0 commit comments

Comments
 (0)