mirror of
https://git.yoctoproject.org/poky
synced 2026-06-02 13:29:49 +00:00
shadow shadow-native: fix build with automake 1.12
(From OE-Core rev: dec7696b737e5921fcac0dbb346851e31a81537b) Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
2e45e31149
commit
0d4d9bd61b
@@ -0,0 +1,23 @@
|
|||||||
|
Upstream-Status: pending
|
||||||
|
|
||||||
|
Automake 1.12 has deprecated automatic de-ANSI-fication support
|
||||||
|
|
||||||
|
This patch avoids this issue with automake 1.12:
|
||||||
|
|
||||||
|
| configure.in:22: error: automatic de-ANSI-fication support has been removed
|
||||||
|
|
||||||
|
Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
|
||||||
|
2012/05/02
|
||||||
|
|
||||||
|
Index: shadow-4.1.4.3/configure.in
|
||||||
|
===================================================================
|
||||||
|
--- shadow-4.1.4.3.orig/configure.in
|
||||||
|
+++ shadow-4.1.4.3/configure.in
|
||||||
|
@@ -19,7 +19,6 @@ AC_PROG_CC
|
||||||
|
AC_ISC_POSIX
|
||||||
|
AC_PROG_LN_S
|
||||||
|
AC_PROG_YACC
|
||||||
|
-AM_C_PROTOTYPES
|
||||||
|
AM_PROG_LIBTOOL
|
||||||
|
|
||||||
|
dnl Checks for libraries.
|
||||||
@@ -7,7 +7,7 @@ LICENSE = "BSD | Artistic-1.0"
|
|||||||
LIC_FILES_CHKSUM = "file://COPYING;md5=08c553a87d4e51bbed50b20e0adcaede \
|
LIC_FILES_CHKSUM = "file://COPYING;md5=08c553a87d4e51bbed50b20e0adcaede \
|
||||||
file://src/passwd.c;firstline=8;endline=30;md5=2899a045e90511d0e043b85a7db7e2fe"
|
file://src/passwd.c;firstline=8;endline=30;md5=2899a045e90511d0e043b85a7db7e2fe"
|
||||||
|
|
||||||
PR = "r4"
|
PR = "r5"
|
||||||
|
|
||||||
SRC_URI = "http://pkg-shadow.alioth.debian.org/releases/${BPN}-${PV}.tar.bz2 \
|
SRC_URI = "http://pkg-shadow.alioth.debian.org/releases/${BPN}-${PV}.tar.bz2 \
|
||||||
file://shadow.automake-1.11.patch \
|
file://shadow.automake-1.11.patch \
|
||||||
@@ -15,7 +15,9 @@ SRC_URI = "http://pkg-shadow.alioth.debian.org/releases/${BPN}-${PV}.tar.bz2 \
|
|||||||
file://shadow-4.1.4.2-env-reset-keep-locale.patch \
|
file://shadow-4.1.4.2-env-reset-keep-locale.patch \
|
||||||
file://add_root_cmd_options.patch \
|
file://add_root_cmd_options.patch \
|
||||||
file://disable-syslog.patch \
|
file://disable-syslog.patch \
|
||||||
file://useradd.patch"
|
file://useradd.patch \
|
||||||
|
file://shadow_fix_for_automake-1.12.patch \
|
||||||
|
"
|
||||||
|
|
||||||
SRC_URI[md5sum] = "b8608d8294ac88974f27b20f991c0e79"
|
SRC_URI[md5sum] = "b8608d8294ac88974f27b20f991c0e79"
|
||||||
SRC_URI[sha256sum] = "633f5bb4ea0c88c55f3642c97f9d25cbef74f82e0b4cf8d54e7ad6f9f9caa778"
|
SRC_URI[sha256sum] = "633f5bb4ea0c88c55f3642c97f9d25cbef74f82e0b4cf8d54e7ad6f9f9caa778"
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=08c553a87d4e51bbed50b20e0adcaede \
|
|||||||
|
|
||||||
DEPENDS = "${@base_contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)}"
|
DEPENDS = "${@base_contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)}"
|
||||||
RDEPENDS_${PN} = "shadow-securetty ${@base_contains('DISTRO_FEATURES', 'pam', '${PAM_PLUGINS}', '', d)}"
|
RDEPENDS_${PN} = "shadow-securetty ${@base_contains('DISTRO_FEATURES', 'pam', '${PAM_PLUGINS}', '', d)}"
|
||||||
PR = "r9"
|
PR = "r10"
|
||||||
|
|
||||||
SRC_URI = "http://pkg-shadow.alioth.debian.org/releases/${BPN}-${PV}.tar.bz2 \
|
SRC_URI = "http://pkg-shadow.alioth.debian.org/releases/${BPN}-${PV}.tar.bz2 \
|
||||||
file://login_defs_pam.sed \
|
file://login_defs_pam.sed \
|
||||||
@@ -19,7 +19,9 @@ SRC_URI = "http://pkg-shadow.alioth.debian.org/releases/${BPN}-${PV}.tar.bz2 \
|
|||||||
file://shadow-4.1.4.2-env-reset-keep-locale.patch \
|
file://shadow-4.1.4.2-env-reset-keep-locale.patch \
|
||||||
file://shadow-4.1.4.2-groupmod-pam-check.patch \
|
file://shadow-4.1.4.2-groupmod-pam-check.patch \
|
||||||
file://shadow-4.1.4.2-su_no_sanitize_env.patch \
|
file://shadow-4.1.4.2-su_no_sanitize_env.patch \
|
||||||
file://shadow-update-pam-conf.patch"
|
file://shadow-update-pam-conf.patch \
|
||||||
|
file://shadow_fix_for_automake-1.12.patch \
|
||||||
|
"
|
||||||
|
|
||||||
SRC_URI[md5sum] = "b8608d8294ac88974f27b20f991c0e79"
|
SRC_URI[md5sum] = "b8608d8294ac88974f27b20f991c0e79"
|
||||||
SRC_URI[sha256sum] = "633f5bb4ea0c88c55f3642c97f9d25cbef74f82e0b4cf8d54e7ad6f9f9caa778"
|
SRC_URI[sha256sum] = "633f5bb4ea0c88c55f3642c97f9d25cbef74f82e0b4cf8d54e7ad6f9f9caa778"
|
||||||
|
|||||||
Reference in New Issue
Block a user