Skip to content

Commit

Permalink
patch 9.0.0831: compiler warning for redefining HAVE_DUP
Browse files Browse the repository at this point in the history
Problem:    Compiler warning for redefining HAVE_DUP.
Solution:   Undefine HAVE_DUP if needed. (Ozaki Kiichi, closes #11484)
  • Loading branch information
ichizok authored and brammool committed Nov 4, 2022
1 parent 5375205 commit 6c3d3e6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/if_python3.c
Expand Up @@ -45,6 +45,9 @@
# undef F_BLANK
#endif

#ifdef HAVE_DUP
# undef HAVE_DUP
#endif
#ifdef HAVE_STRFTIME
# undef HAVE_STRFTIME
#endif
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -695,6 +695,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
831,
/**/
830,
/**/
Expand Down

0 comments on commit 6c3d3e6

Please sign in to comment.