mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

58 lines
2.4 KiB

  1. # --- ROCK-COPYRIGHT-NOTE-BEGIN ---
  2. #
  3. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  4. # Please add additional copyright information _after_ the line containing
  5. # the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
  6. # the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
  7. #
  8. # ROCK Linux: rock-src/package/base/glibc/glibc23/glibc-2.3.5-allow-gcc4-wcstol_l.patch
  9. # ROCK Linux is Copyright (C) 1998 - 2006 Clifford Wolf
  10. #
  11. # This patch file is dual-licensed. It is available under the license the
  12. # patched project is licensed under, as long as it is an OpenSource license
  13. # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
  14. # of the GNU General Public License as published by the Free Software
  15. # Foundation; either version 2 of the License, or (at your option) any later
  16. # version.
  17. #
  18. # --- ROCK-COPYRIGHT-NOTE-END ---
  19. Fixes
  20. ../sysdeps/wordsize-64/wcstol_l.c:11: error: '____wcstoll_l_internal' aliased to undefined symbol '____wcstol_l_internal'
  21. ../sysdeps/wordsize-64/wcstol_l.c:12: error: '__wcstoll_l' aliased to undefined symbol '__wcstol_l'
  22. ../sysdeps/wordsize-64/wcstol_l.c:13: error: 'wcstoll_l' aliased to undefined symbol '__wcstol_l'
  23. ===================================================================
  24. RCS file: /cvs/glibc/libc/sysdeps/wordsize-64/strtol_l.c,v
  25. retrieving revision 1.4
  26. retrieving revision 1.4.2.1
  27. diff -u -r1.4 -r1.4.2.1
  28. --- libc/sysdeps/wordsize-64/strtol_l.c 2003/03/03 09:45:12 1.4
  29. +++ libc/sysdeps/wordsize-64/strtol_l.c 2005/03/25 11:59:01 1.4.2.1
  30. @@ -8,7 +8,9 @@
  31. #undef ____strtoll_l_internal
  32. #undef __strtoll_l
  33. #undef strtoll_l
  34. +#if !UNSIGNED
  35. strong_alias (____strtol_l_internal, ____strtoll_l_internal)
  36. libc_hidden_ver (____strtol_l_internal, ____strtoll_l_internal)
  37. weak_alias (__strtol_l, __strtoll_l)
  38. weak_alias (__strtol_l, strtoll_l)
  39. +#endif
  40. ===================================================================
  41. RCS file: /cvs/glibc/libc/sysdeps/wordsize-64/wcstol_l.c,v
  42. retrieving revision 1.4
  43. retrieving revision 1.4.2.1
  44. diff -u -r1.4 -r1.4.2.1
  45. --- libc/sysdeps/wordsize-64/wcstol_l.c 2002/08/08 11:44:51 1.4
  46. +++ libc/sysdeps/wordsize-64/wcstol_l.c 2005/03/25 11:59:01 1.4.2.1
  47. @@ -8,6 +8,8 @@
  48. #undef ____wcstoll_l_internal
  49. #undef __wcstoll_l
  50. #undef wcstoll_l
  51. +#if !UNSIGNED
  52. strong_alias (____wcstol_l_internal, ____wcstoll_l_internal)
  53. weak_alias (__wcstol_l, __wcstoll_l)
  54. weak_alias (__wcstol_l, wcstoll_l)
  55. +#endif