bash-4.2-020.patch 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. BASH PATCH REPORT
  2. =================
  3. Bash-Release: 4.2
  4. Patch-ID: bash42-020
  5. Bug-Reported-by: Vincent Sheffer <vince.sheffer@apisphere.com>
  6. Bug-Reference-ID: <F13C1C4F-C44C-4071-BFED-4BB6D13CF92F@apisphere.com>
  7. Bug-Reference-URL: https://lists.gnu.org/archive/html/bug-readline/2011-08/msg00000.html
  8. Bug-Description:
  9. The shared object helper script needs to be updated for Mac OS X 10.7
  10. (Lion, darwin11).
  11. Patch (apply with `patch -p0'):
  12. *** ../bash-4.2-patched/support/shobj-conf 2009-10-28 09:20:21.000000000 -0400
  13. --- ./support/shobj-conf 2011-08-27 13:25:23.000000000 -0400
  14. ***************
  15. *** 158,162 ****
  16. # Darwin/MacOS X
  17. ! darwin[89]*|darwin10*)
  18. SHOBJ_STATUS=supported
  19. SHLIB_STATUS=supported
  20. --- 172,176 ----
  21. # Darwin/MacOS X
  22. ! darwin[89]*|darwin1[012]*)
  23. SHOBJ_STATUS=supported
  24. SHLIB_STATUS=supported
  25. ***************
  26. *** 187,191 ****
  27. case "${host_os}" in
  28. ! darwin[789]*|darwin10*) SHOBJ_LDFLAGS=''
  29. SHLIB_XLDFLAGS='-dynamiclib -arch_only `/usr/bin/arch` -install_name $(libdir)/$@ -current_version $(SHLIB_MAJOR)$(SHLIB_MINOR) -compatibility_version $(SHLIB_MAJOR) -v'
  30. ;;
  31. --- 201,205 ----
  32. case "${host_os}" in
  33. ! darwin[789]*|darwin1[012]*) SHOBJ_LDFLAGS=''
  34. SHLIB_XLDFLAGS='-dynamiclib -arch_only `/usr/bin/arch` -install_name $(libdir)/$@ -current_version $(SHLIB_MAJOR)$(SHLIB_MINOR) -compatibility_version $(SHLIB_MAJOR) -v'
  35. ;;
  36. *** ../bash-4.2-patched/patchlevel.h Sat Jun 12 20:14:48 2010
  37. --- ./patchlevel.h Thu Feb 24 21:41:34 2011
  38. ***************
  39. *** 26,30 ****
  40. looks for to find the patch level (for the sccs version string). */
  41. ! #define PATCHLEVEL 19
  42. #endif /* _PATCHLEVEL_H_ */
  43. --- 26,30 ----
  44. looks for to find the patch level (for the sccs version string). */
  45. ! #define PATCHLEVEL 20
  46. #endif /* _PATCHLEVEL_H_ */