forked from openembedded/meta-openembedded
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
0001-Add-configure-options-for-packages.patch refreshed for new version. Signed-off-by: Wang Mingyu <[email protected]> Signed-off-by: Khem Raj <[email protected]>
- Loading branch information
1 parent
a0fb09a
commit d091403
Showing
2 changed files
with
15 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,13 +21,16 @@ Signed-off-by: Joe Slater <[email protected]> | |
|
||
Update patch to version 0.10.0 | ||
Signed-off-by: Changqing Li <[email protected]> | ||
|
||
Update patch to version 0.14.1 | ||
Signed-off-by: Wang Mingyu <[email protected]> | ||
--- | ||
lib/replace/wscript | 87 ++++++++++++++++++++++++++++++++++----------- | ||
lib/replace/wscript | 85 +++++++++++++++++++++++++++++++++++---------- | ||
wscript | 6 ++++ | ||
2 files changed, 73 insertions(+), 20 deletions(-) | ||
2 files changed, 73 insertions(+), 18 deletions(-) | ||
|
||
diff --git a/lib/replace/wscript b/lib/replace/wscript | ||
index 4c774d9..21a746a 100644 | ||
index 5c2b750..28835ac 100644 | ||
--- a/lib/replace/wscript | ||
+++ b/lib/replace/wscript | ||
@@ -25,6 +25,41 @@ def options(opt): | ||
|
@@ -72,7 +75,7 @@ index 4c774d9..21a746a 100644 | |
@Utils.run_once | ||
def configure(conf): | ||
conf.RECURSE('buildtools/wafsamba') | ||
@@ -35,12 +70,25 @@ def configure(conf): | ||
@@ -38,12 +73,27 @@ def configure(conf): | ||
conf.DEFINE('HAVE_LIBREPLACE', 1) | ||
conf.DEFINE('LIBREPLACE_NETWORK_CHECKS', 1) | ||
|
||
|
@@ -82,8 +85,8 @@ index 4c774d9..21a746a 100644 | |
+ conf.CHECK_HEADERS('compat.h ctype.h dustat.h') | ||
conf.CHECK_HEADERS('fcntl.h fnmatch.h glob.h history.h krb5.h langinfo.h') | ||
conf.CHECK_HEADERS('locale.h ndir.h pwd.h') | ||
- conf.CHECK_HEADERS('shadow.h sys/acl.h') | ||
- conf.CHECK_HEADERS('sys/attributes.h attr/attributes.h sys/capability.h sys/dir.h sys/epoll.h') | ||
conf.CHECK_HEADERS('shadow.h sys/acl.h') | ||
conf.CHECK_HEADERS('sys/attributes.h attr/attributes.h sys/capability.h sys/dir.h sys/epoll.h') | ||
+ conf.CHECK_HEADERS('shadow.h') | ||
+ conf.CHECK_HEADERS('sys/attributes.h sys/dir.h sys/epoll.h') | ||
+ | ||
|
@@ -99,10 +102,10 @@ index 4c774d9..21a746a 100644 | |
+ if Options.options.enable_libcap: | ||
+ conf.CHECK_HEADERS('sys/capability.h') | ||
+ | ||
conf.CHECK_HEADERS('port.h') | ||
conf.CHECK_HEADERS('sys/fcntl.h sys/filio.h sys/filsys.h sys/fs/s5param.h') | ||
conf.CHECK_HEADERS('sys/id.h sys/ioctl.h sys/ipc.h sys/mman.h sys/mode.h sys/ndir.h sys/priv.h') | ||
@@ -110,8 +158,9 @@ def configure(conf): | ||
conf.CHECK_HEADERS('sys/resource.h sys/security.h sys/shm.h sys/statfs.h sys/statvfs.h sys/termio.h') | ||
@@ -113,8 +163,9 @@ def configure(conf): | ||
conf.CHECK_HEADERS('sys/fileio.h sys/filesys.h sys/dustat.h sys/sysmacros.h') | ||
conf.CHECK_HEADERS('xfs/libxfs.h netgroup.h') | ||
|
||
|
@@ -114,7 +117,7 @@ index 4c774d9..21a746a 100644 | |
conf.CHECK_HEADERS('nss_common.h nsswitch.h ns_api.h') | ||
conf.CHECK_HEADERS('sys/extattr.h sys/ea.h sys/proplist.h sys/cdefs.h') | ||
conf.CHECK_HEADERS('utmp.h utmpx.h lastlog.h') | ||
@@ -434,20 +483,18 @@ def configure(conf): | ||
@@ -436,20 +487,18 @@ def configure(conf): | ||
|
||
strlcpy_in_bsd = False | ||
|
||
|
@@ -148,7 +151,7 @@ index 4c774d9..21a746a 100644 | |
conf.CHECK_CODE(''' | ||
struct ucred cred; | ||
diff --git a/wscript b/wscript | ||
index 5c6f02c..75eecd4 100644 | ||
index 0f6e92f..5a54f3a 100644 | ||
--- a/wscript | ||
+++ b/wscript | ||
@@ -28,6 +28,12 @@ def options(opt): | ||
|
@@ -165,5 +168,5 @@ index 5c6f02c..75eecd4 100644 | |
def configure(conf): | ||
conf.RECURSE('lib/replace') | ||
-- | ||
2.25.1 | ||
2.34.1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters