diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2022-02-06 17:12:49 -0600 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2022-04-24 20:51:34 -0500 |
commit | d6b47159160d494dd70a3d95349c1298fb45e1a7 (patch) | |
tree | ab1c7505b97a51d85fe0cd8ea2444e1fe2ddcfe1 /system/libidn/localename-test-fix.patch | |
parent | 8f294479ccae6ad15c1e594f6942be50c88c9383 (diff) | |
download | packages-d6b47159160d494dd70a3d95349c1298fb45e1a7.tar.gz packages-d6b47159160d494dd70a3d95349c1298fb45e1a7.tar.bz2 packages-d6b47159160d494dd70a3d95349c1298fb45e1a7.tar.xz packages-d6b47159160d494dd70a3d95349c1298fb45e1a7.zip |
system/libidn: Update to 1.38
Diffstat (limited to 'system/libidn/localename-test-fix.patch')
-rw-r--r-- | system/libidn/localename-test-fix.patch | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/system/libidn/localename-test-fix.patch b/system/libidn/localename-test-fix.patch deleted file mode 100644 index 4b77c2a24..000000000 --- a/system/libidn/localename-test-fix.patch +++ /dev/null @@ -1,34 +0,0 @@ ---- libidn-1.33/lib/gltests/localename.c.old 2016-12-31 13:54:43.000000000 +0000 -+++ libidn-1.33/lib/gltests/localename.c 2017-07-30 16:40:47.098541270 +0000 -@@ -40,7 +40,7 @@ - # if defined __APPLE__ && defined __MACH__ - # include <xlocale.h> - # endif --# if (__GLIBC__ >= 2 && !defined __UCLIBC__) || defined __CYGWIN__ -+# if defined __linux__ - # include <langinfo.h> - # endif - # if !defined IN_LIBINTL -@@ -2692,16 +2692,19 @@ - locale_t thread_locale = uselocale (NULL); - if (thread_locale != LC_GLOBAL_LOCALE) - { --# if __GLIBC__ >= 2 && !defined __UCLIBC__ -+# if defined(_NL_LOCALE_NAME) -+ const char *name = nl_langinfo(_NL_LOCALE_NAME(category)); -+# if __GLIBC__ >= 2 && !defined __UCLIBC__ - /* Work around an incorrect definition of the _NL_LOCALE_NAME macro in - glibc < 2.12. - See <https://sourceware.org/bugzilla/show_bug.cgi?id=10968>. */ -- const char *name = -- nl_langinfo (_NL_ITEM ((category), _NL_ITEM_INDEX (-1))); -+ if (name[0] == '\0') -+ name = nl_langinfo (_NL_ITEM ((category), _NL_ITEM_INDEX (-1))); - if (name[0] == '\0') - /* Fallback code for glibc < 2.4, which did not implement - nl_langinfo (_NL_LOCALE_NAME (category)). */ - name = thread_locale->__names[category]; -+# endif - return name; - # elif (defined __FreeBSD__ || defined __DragonFly__) || (defined __APPLE__ && defined __MACH__) - /* FreeBSD, Mac OS X */ |