aboutsummaryrefslogtreecommitdiffstats
path: root/main/guile/strtol_l.patch
diff options
context:
space:
mode:
authorCarlo Landmeter <clandmeter@gmail.com>2016-11-03 12:41:53 +0100
committerCarlo Landmeter <clandmeter@gmail.com>2016-11-03 12:42:02 +0100
commit28b3436546a7577cee65c17d93cc9f6691bb3c8e (patch)
tree261742477a5cf8fd5666d072968ae0f0328f5ebe /main/guile/strtol_l.patch
parent4699a8cb5fe47563f1f3c3b1ddc0ac6c04842dda (diff)
downloadaports-28b3436546a7577cee65c17d93cc9f6691bb3c8e.tar.bz2
aports-28b3436546a7577cee65c17d93cc9f6691bb3c8e.tar.xz
main/guile: upgrade to 2.0.13
Diffstat (limited to 'main/guile/strtol_l.patch')
-rw-r--r--main/guile/strtol_l.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/main/guile/strtol_l.patch b/main/guile/strtol_l.patch
deleted file mode 100644
index 61f4f331ee..0000000000
--- a/main/guile/strtol_l.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-We dont have strtol_l on musl so the missing configure.ac check is not
-a problem for us. By skipping it we also avoid regenerating configure
-script.
-
-diff --git a/libguile/i18n.c b/libguile/i18n.c
-index f0e3443..17e9eca 100644
---- a/libguile/i18n.c
-+++ b/libguile/i18n.c
-@@ -1373,7 +1373,7 @@ SCM_DEFINE (scm_locale_string_to_integer, "locale-string->integer",
-
- if (c_locale != NULL)
- {
--#ifdef USE_GNU_LOCALE_API
-+#if defined(USE_GNU_LOCALE_API) && defined(HAVE_STRTOL_L)
- c_result = strtol_l (c_str, &c_endptr, c_base, c_locale);
- #else
- RUN_IN_LOCALE_SECTION (c_locale,
---
-2.4.3
-