vanhofen
3 years ago
6 changed files with 279 additions and 3 deletions
@ -0,0 +1,19 @@ |
|||||
|
Add LTLIBICONV to popt.pc.in |
||||
|
|
||||
|
Add ${LTLIBICONV} to popt.pc.in so applications such as shairport-sync |
||||
|
will know that they must link with -liconv when building statically |
||||
|
|
||||
|
Fixes: |
||||
|
- http://autobuild.buildroot.org/results/c5b0d1d2867e49c022a2ad971dd9f358ff0f3865 |
||||
|
|
||||
|
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> |
||||
|
|
||||
|
diff -Naurp popt-1.18-vanilla/popt.pc.in popt-1.18/popt.pc.in
|
||||
|
--- popt-1.18-vanilla/popt.pc.in 2020-03-24 10:36:25.000000000 +0100
|
||||
|
+++ popt-1.18/popt.pc.in 2020-09-18 21:18:03.112609343 +0200
|
||||
|
@@ -7,4 +7,5 @@ Name: popt
|
||||
|
Version: @VERSION@ |
||||
|
Description: popt library. |
||||
|
Libs: -L${libdir} -lpopt |
||||
|
+Libs.private: @LTLIBICONV@
|
||||
|
Cflags: -I${includedir} |
@ -0,0 +1,53 @@ |
|||||
|
From 3938da1286534e4b280340411336eed5b6311d1b Mon Sep 17 00:00:00 2001 |
||||
|
From: Fabrice Fontaine <fontaine.fabrice@gmail.com> |
||||
|
Date: Wed, 15 Jul 2020 23:21:32 +0200 |
||||
|
Subject: [PATCH] Detect glob_pattern_p() |
||||
|
|
||||
|
The current popt build system tests the existence of <glob.h>, and |
||||
|
then assumes that if __GLIBC__ is defined, then glob_pattern_p() must |
||||
|
be available. Unfortunately, that's not true with uClibc: <glob.h> may |
||||
|
be installed, but not necessarily the GNU glob extensions... and |
||||
|
uClibc defines __GLIBC__. This is causing build issues with certain |
||||
|
uClibc toolchains that do not have GNU glob extensions enabled. |
||||
|
|
||||
|
To fix this, this patch adds an AC_CHECK_FUNCS() test for |
||||
|
glob_pattern_p, and uses that to find out whether glob_pattern_p() is |
||||
|
available or not. |
||||
|
|
||||
|
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> |
||||
|
[Retrieved (and slightly updated) from: |
||||
|
https://git.buildroot.net/buildroot/tree/package/popt/0003-glob-detection.patch] |
||||
|
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> |
||||
|
[Retrieved from: |
||||
|
https://github.com/rpm-software-management/popt/commit/3938da1286534e4b280340411336eed5b6311d1b] |
||||
|
---
|
||||
|
configure.ac | 2 +- |
||||
|
src/poptconfig.c | 2 +- |
||||
|
2 files changed, 2 insertions(+), 2 deletions(-) |
||||
|
|
||||
|
diff --git a/configure.ac b/configure.ac
|
||||
|
index a5568c4..3b71d1a 100755
|
||||
|
--- a/configure.ac
|
||||
|
+++ b/configure.ac
|
||||
|
@@ -50,7 +50,7 @@ AC_ARG_ENABLE(build-gcov,
|
||||
|
]) |
||||
|
|
||||
|
AC_SEARCH_LIBS(setreuid, [ucb]) |
||||
|
-AC_CHECK_FUNCS(getuid geteuid iconv mtrace secure_getenv __secure_getenv setreuid setuid stpcpy strerror vasprintf srandom)
|
||||
|
+AC_CHECK_FUNCS(getuid geteuid iconv mtrace secure_getenv __secure_getenv setreuid setuid stpcpy strerror vasprintf srandom glob_pattern_p)
|
||||
|
|
||||
|
AM_GNU_GETTEXT_VERSION([0.18.2]) |
||||
|
AM_GNU_GETTEXT([external]) |
||||
|
diff --git a/src/poptconfig.c b/src/poptconfig.c
|
||||
|
index 9d97ccd..b4d1b76 100644
|
||||
|
--- a/src/poptconfig.c
|
||||
|
+++ b/src/poptconfig.c
|
||||
|
@@ -21,7 +21,7 @@
|
||||
|
#if defined(HAVE_GLOB_H) |
||||
|
#include <glob.h> |
||||
|
|
||||
|
-#if !defined(__GLIBC__)
|
||||
|
+#if !defined(HAVE_GLOB_PATTERN_P)
|
||||
|
/* Return nonzero if PATTERN contains any metacharacters. |
||||
|
Metacharacters can be quoted with backslashes if QUOTE is nonzero. */ |
||||
|
static int |
@ -0,0 +1,76 @@ |
|||||
|
From f492b19f59229b0494b5b9ffe5c660a35493a405 Mon Sep 17 00:00:00 2001 |
||||
|
From: =?UTF-8?q?Christian=20G=C3=B6ttsche?= <cgzones@googlemail.com> |
||||
|
Date: Mon, 29 Jun 2020 18:58:09 +0200 |
||||
|
Subject: [PATCH] configure: replace deprecated macros |
||||
|
|
||||
|
* use LT_INIT instead of deprecated AC_PROG_LIBTOOL |
||||
|
* use AS_HELP_STRING instead of deprecated AC_HELP_STRING |
||||
|
* quote macros |
||||
|
|
||||
|
[Retrieved from: |
||||
|
https://github.com/rpm-software-management/popt/commit/f492b19f59229b0494b5b9ffe5c660a35493a405] |
||||
|
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> |
||||
|
---
|
||||
|
configure.ac | 20 ++++++++++---------- |
||||
|
1 file changed, 10 insertions(+), 10 deletions(-) |
||||
|
mode change 100755 => 100644 configure.ac |
||||
|
|
||||
|
diff --git a/configure.ac b/configure.ac
|
||||
|
old mode 100755 |
||||
|
new mode 100644 |
||||
|
index 3b71d1a..009ae7b
|
||||
|
--- a/configure.ac
|
||||
|
+++ b/configure.ac
|
||||
|
@@ -1,5 +1,5 @@
|
||||
|
-AC_PREREQ(2.57)
|
||||
|
-AC_INIT(popt, 1.18, rpm-maint@lists.rpm.org)
|
||||
|
+AC_PREREQ([2.57])
|
||||
|
+AC_INIT([popt], [1.18], [rpm-maint@lists.rpm.org])
|
||||
|
AC_CONFIG_SRCDIR([src/popt.h]) |
||||
|
AC_CONFIG_HEADERS([config.h]) |
||||
|
|
||||
|
@@ -14,11 +14,11 @@ AC_USE_SYSTEM_EXTENSIONS
|
||||
|
AM_PROG_AR |
||||
|
|
||||
|
AC_PROG_INSTALL |
||||
|
-AC_PROG_LIBTOOL
|
||||
|
+LT_INIT
|
||||
|
|
||||
|
AC_SYS_LARGEFILE |
||||
|
|
||||
|
-AC_CHECK_HEADERS(fnmatch.h glob.h langinfo.h libintl.h mcheck.h stdalign.h)
|
||||
|
+AC_CHECK_HEADERS([fnmatch.h glob.h langinfo.h libintl.h mcheck.h stdalign.h])
|
||||
|
|
||||
|
# For some systems we know that we have ld_version scripts. |
||||
|
# Use it then as default. |
||||
|
@@ -32,15 +32,15 @@ case "${host}" in
|
||||
|
;; |
||||
|
esac |
||||
|
AC_ARG_ENABLE([ld-version-script], |
||||
|
- AC_HELP_STRING([--enable-ld-version-script],
|
||||
|
+ [AS_HELP_STRING([--enable-ld-version-script],
|
||||
|
[enable/disable use of linker version script. |
||||
|
- (default is system dependent)]),
|
||||
|
+ (default is system dependent)])],
|
||||
|
[have_ld_version_script=$enableval], |
||||
|
[ : ] ) |
||||
|
AM_CONDITIONAL(HAVE_LD_VERSION_SCRIPT, test "$have_ld_version_script" = "yes") |
||||
|
|
||||
|
-AC_ARG_ENABLE(build-gcov,
|
||||
|
- AS_HELP_STRING([--enable-build-gcov], [build POPT instrumented for gcov]), [dnl
|
||||
|
+AC_ARG_ENABLE([build-gcov],
|
||||
|
+ [AS_HELP_STRING([--enable-build-gcov], [build POPT instrumented for gcov])], [dnl
|
||||
|
if test ".$enableval" = .yes; then |
||||
|
if test ".`$CC --version 2>&1 | grep 'GCC'`" != .; then |
||||
|
dnl # GNU GCC (usually "gcc") |
||||
|
@@ -49,8 +49,8 @@ AC_ARG_ENABLE(build-gcov,
|
||||
|
fi |
||||
|
]) |
||||
|
|
||||
|
-AC_SEARCH_LIBS(setreuid, [ucb])
|
||||
|
-AC_CHECK_FUNCS(getuid geteuid iconv mtrace secure_getenv __secure_getenv setreuid setuid stpcpy strerror vasprintf srandom glob_pattern_p)
|
||||
|
+AC_SEARCH_LIBS([setreuid], [ucb])
|
||||
|
+AC_CHECK_FUNCS([getuid geteuid iconv mtrace secure_getenv __secure_getenv setreuid setuid stpcpy strerror vasprintf srandom glob_pattern_p])
|
||||
|
|
||||
|
AM_GNU_GETTEXT_VERSION([0.18.2]) |
||||
|
AM_GNU_GETTEXT([external]) |
@ -0,0 +1,53 @@ |
|||||
|
From 41911aac46d69df6a205af59d60f23a418b0e875 Mon Sep 17 00:00:00 2001 |
||||
|
From: Fabrice Fontaine <fontaine.fabrice@gmail.com> |
||||
|
Date: Wed, 2 Sep 2020 11:55:17 +0200 |
||||
|
Subject: [PATCH] fix build without wchar |
||||
|
|
||||
|
Check for wchar.h and use HAVE_WCHAR_H instead of hardcoding |
||||
|
POPT_WCHAR_HACK to fix the build with (embedded) toolchains that don't |
||||
|
support wchar |
||||
|
|
||||
|
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> |
||||
|
[Retrieved from: |
||||
|
https://github.com/rpm-software-management/popt/commit/41911aac46d69df6a205af59d60f23a418b0e875] |
||||
|
---
|
||||
|
configure.ac | 2 +- |
||||
|
src/popthelp.c | 5 ++--- |
||||
|
2 files changed, 3 insertions(+), 4 deletions(-) |
||||
|
|
||||
|
diff --git a/configure.ac b/configure.ac
|
||||
|
index 009ae7b..1fce6df 100644
|
||||
|
--- a/configure.ac
|
||||
|
+++ b/configure.ac
|
||||
|
@@ -18,7 +18,7 @@ LT_INIT
|
||||
|
|
||||
|
AC_SYS_LARGEFILE |
||||
|
|
||||
|
-AC_CHECK_HEADERS([fnmatch.h glob.h langinfo.h libintl.h mcheck.h stdalign.h])
|
||||
|
+AC_CHECK_HEADERS([fnmatch.h glob.h langinfo.h libintl.h mcheck.h stdalign.h wchar.h])
|
||||
|
|
||||
|
# For some systems we know that we have ld_version scripts. |
||||
|
# Use it then as default. |
||||
|
diff --git a/src/popthelp.c b/src/popthelp.c
|
||||
|
index 9a3f489..5cbc1f4 100644
|
||||
|
--- a/src/popthelp.c
|
||||
|
+++ b/src/popthelp.c
|
||||
|
@@ -15,8 +15,7 @@
|
||||
|
#include <sys/ioctl.h> |
||||
|
#endif |
||||
|
|
||||
|
-#define POPT_WCHAR_HACK
|
||||
|
-#ifdef POPT_WCHAR_HACK
|
||||
|
+#ifdef HAVE_WCHAR_H
|
||||
|
#include <wchar.h> /* for mbsrtowcs */ |
||||
|
#endif |
||||
|
#include "poptint.h" |
||||
|
@@ -118,7 +117,7 @@ static size_t maxColumnWidth(FILE *fp)
|
||||
|
static inline size_t stringDisplayWidth(const char *s) |
||||
|
{ |
||||
|
size_t n = strlen(s); |
||||
|
-#ifdef POPT_WCHAR_HACK
|
||||
|
+#ifdef HAVE_WCHAR_H
|
||||
|
mbstate_t t; |
||||
|
|
||||
|
memset ((void *)&t, 0, sizeof (t)); /* In initial state. */ |
@ -0,0 +1,68 @@ |
|||||
|
From e4788a0f9d820574a165b2609ff16b717ce0baba Mon Sep 17 00:00:00 2001 |
||||
|
From: Fabrice Fontaine <fontaine.fabrice@gmail.com> |
||||
|
Date: Sat, 19 Sep 2020 18:51:15 +0200 |
||||
|
Subject: [PATCH] fix build without mbstate_t |
||||
|
|
||||
|
Commit 41911aac46d69df6a205af59d60f23a418b0e875 tried to fix build |
||||
|
without wchar by checking for the availability of wchar.h however some |
||||
|
toolchains have wchar.h but does not define mbstate_t and mbsrtowcs so |
||||
|
replace HAVE_WCHAR_H by HAVE_MBSRTOWCS |
||||
|
|
||||
|
Fixes: |
||||
|
- http://autobuild.buildroot.org/results/27f184af35468941173628e5e847a284c0b80d73 |
||||
|
|
||||
|
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> |
||||
|
[Upstream status: |
||||
|
https://github.com/rpm-software-management/popt/pull/51] |
||||
|
---
|
||||
|
configure.ac | 4 ++-- |
||||
|
src/popthelp.c | 4 ++-- |
||||
|
2 files changed, 4 insertions(+), 4 deletions(-) |
||||
|
|
||||
|
diff --git a/configure.ac b/configure.ac
|
||||
|
index 1fce6df..442086b 100644
|
||||
|
--- a/configure.ac
|
||||
|
+++ b/configure.ac
|
||||
|
@@ -18,7 +18,7 @@ LT_INIT
|
||||
|
|
||||
|
AC_SYS_LARGEFILE |
||||
|
|
||||
|
-AC_CHECK_HEADERS([fnmatch.h glob.h langinfo.h libintl.h mcheck.h stdalign.h wchar.h])
|
||||
|
+AC_CHECK_HEADERS([fnmatch.h glob.h langinfo.h libintl.h mcheck.h stdalign.h])
|
||||
|
|
||||
|
# For some systems we know that we have ld_version scripts. |
||||
|
# Use it then as default. |
||||
|
@@ -50,7 +50,7 @@ AC_ARG_ENABLE([build-gcov],
|
||||
|
]) |
||||
|
|
||||
|
AC_SEARCH_LIBS([setreuid], [ucb]) |
||||
|
-AC_CHECK_FUNCS([getuid geteuid iconv mtrace secure_getenv __secure_getenv setreuid setuid stpcpy strerror vasprintf srandom glob_pattern_p])
|
||||
|
+AC_CHECK_FUNCS([getuid geteuid iconv mtrace secure_getenv __secure_getenv setreuid setuid stpcpy strerror vasprintf srandom glob_pattern_p mbsrtowcs])
|
||||
|
|
||||
|
AM_GNU_GETTEXT_VERSION([0.18.2]) |
||||
|
AM_GNU_GETTEXT([external]) |
||||
|
diff --git a/src/popthelp.c b/src/popthelp.c
|
||||
|
index f604516..b4ab9b4 100644
|
||||
|
--- a/src/popthelp.c
|
||||
|
+++ b/src/popthelp.c
|
||||
|
@@ -15,7 +15,7 @@
|
||||
|
#include <sys/ioctl.h> |
||||
|
#endif |
||||
|
|
||||
|
-#ifdef HAVE_WCHAR_H
|
||||
|
+#ifdef HAVE_MBSRTOWCS
|
||||
|
#include <wchar.h> /* for mbsrtowcs */ |
||||
|
#endif |
||||
|
#include "poptint.h" |
||||
|
@@ -117,7 +117,7 @@ static size_t maxColumnWidth(FILE *fp)
|
||||
|
static inline size_t stringDisplayWidth(const char *s) |
||||
|
{ |
||||
|
size_t n = strlen(s); |
||||
|
-#ifdef HAVE_WCHAR_H
|
||||
|
+#ifdef HAVE_MBSRTOWCS
|
||||
|
mbstate_t t; |
||||
|
|
||||
|
memset ((void *)&t, 0, sizeof (t)); /* In initial state. */ |
||||
|
--
|
||||
|
2.28.0 |
||||
|
|
Loading…
Reference in new issue