0006-bash50-006.patch 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. From https://ftp.gnu.org/gnu/bash/bash-5.0-patches/bash50-006
  2. Signed-off-by: Pascal de Bruijn <p.debruijn@unilogic.nl>
  3. BASH PATCH REPORT
  4. =================
  5. Bash-Release: 5.0
  6. Patch-ID: bash50-006
  7. Bug-Reported-by: Tomas Mozes <hydrapolic@gmail.com>
  8. Bug-Reference-ID: <CAG6MAzQumLU2vhnmr1UrYAUQAFW5Yo8hfM_sEibX9RJQWJkRrA@mail.gmail.com>
  9. Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2019-03/msg00037.html
  10. Bug-Description:
  11. Bash-5.0 did not build successfully if SYSLOG_HISTORY was defined without
  12. also defining SYSLOG_SHOPT.
  13. Patch (apply with `patch -p0'):
  14. *** ../bash-5.0-patched/builtins/shopt.def 2018-10-05 14:49:02.000000000 -0400
  15. --- b/builtins/shopt.def 2019-01-23 09:55:22.000000000 -0500
  16. ***************
  17. *** 123,127 ****
  18. #endif
  19. ! #if defined (SYSLOG_HISTORY) && defined (SYSLOG_SHOPT)
  20. extern int syslog_history;
  21. #endif
  22. --- 123,127 ----
  23. #endif
  24. ! #if defined (SYSLOG_HISTORY)
  25. extern int syslog_history;
  26. #endif
  27. *** ../bash-5.0/patchlevel.h 2016-06-22 14:51:03.000000000 -0400
  28. --- b/patchlevel.h 2016-10-01 11:01:28.000000000 -0400
  29. ***************
  30. *** 26,30 ****
  31. looks for to find the patch level (for the sccs version string). */
  32. ! #define PATCHLEVEL 5
  33. #endif /* _PATCHLEVEL_H_ */
  34. --- 26,30 ----
  35. looks for to find the patch level (for the sccs version string). */
  36. ! #define PATCHLEVEL 6
  37. #endif /* _PATCHLEVEL_H_ */