pkg-autotools: move the libtool patching call out of the autoreconf hook
[buildroot-gz.git] / package / python3 / python3-108-optional-nis.patch
blobde6057c9feb7403f182b54c5abe437ebd84d5789
1 Add an option to disable NIS
3 NIS is not necessarily available in uClibc, so we need an option to
4 not compile support for it.
6 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8 ---
9 configure.ac | 6 ++++++
10 1 file changed, 6 insertions(+)
12 Index: b/configure.ac
13 ===================================================================
14 --- a/configure.ac
15 +++ b/configure.ac
16 @@ -2678,6 +2678,12 @@
17 DISABLED_EXTENSIONS="${DISABLED_EXTENSIONS} _codecs_kr _codecs_jp _codecs_cn _codecs_tw _codecs_hk _codecs_iso2022"
18 fi])
20 +AC_ARG_ENABLE(nis,
21 + AS_HELP_STRING([--disable-nis], [disable NIS]),
22 + [ if test "$enableval" = "no"; then
23 + DISABLED_EXTENSIONS="${DISABLED_EXTENSIONS} nis"
24 + fi])
26 AC_SUBST(TK)
27 AC_ARG_ENABLE(tk,
28 AS_HELP_STRING([--disable-tk], [disable tk]),