0001-parse-util-Don-t-use-xlocale.h.patch 903 B

1234567891011121314151617181920212223242526272829303132
  1. From d379126d56d0b6e935b2d97ca71579e6cc54d1bb Mon Sep 17 00:00:00 2001
  2. From: Jussi Kukkonen <jussi.kukkonen@intel.com>
  3. Date: Tue, 18 Jul 2017 13:37:27 +0300
  4. Subject: [PATCH] parse-util: Don't use xlocale.h
  5. glibc 2.26 no longer contains the non-standard xlocale.h
  6. (http://sourceware.org/glibc/wiki/Release/2.26#Removal_of_.27xlocale.h.27)
  7. This change shouldn't break anything as xlocale.h was a subset of
  8. locale.h.
  9. Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
  10. Upstream-Status: Submitted [https://github.com/systemd/systemd-bootchart/pull/35]
  11. ---
  12. src/parse-util.c | 1 -
  13. 1 file changed, 1 deletion(-)
  14. diff --git a/src/parse-util.c b/src/parse-util.c
  15. index 5635a68..1b2169c 100644
  16. --- a/src/parse-util.c
  17. +++ b/src/parse-util.c
  18. @@ -21,7 +21,6 @@
  19. #include <locale.h>
  20. #include <stdlib.h>
  21. #include <string.h>
  22. -#include <xlocale.h>
  23. #include "macro.h"
  24. #include "parse-util.h"
  25. --
  26. 2.13.2