mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 19:47:34 +00:00
Ports: Bump the version of make to 4.4.1
This commit is contained in:
parent
260b0451b0
commit
251ea54cc8
5 changed files with 11 additions and 9 deletions
|
@ -8,15 +8,15 @@ Subject: [PATCH] Include ar.h for serenity as well
|
|||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/arscan.c b/src/arscan.c
|
||||
index b6ed45a87754085aa1776c85e0181ba6edb0d7e6..2ae76f8134a581f3607a7d0c507d1d2e21dc3abc 100644
|
||||
index edd4070c3f86fcecc44ac2025d1256a47de700a0..6c7a7f4c595a9b00ffcbc0e4fade63d2efbca816 100644
|
||||
--- a/src/arscan.c
|
||||
+++ b/src/arscan.c
|
||||
@@ -331,7 +331,7 @@ ar_scan (const char *archive, ar_member_func_t function, const void *varg)
|
||||
#endif
|
||||
|
||||
#ifndef WINDOWS32
|
||||
-# if !defined (__ANDROID__) && !defined (__BEOS__)
|
||||
+# if !defined (__ANDROID__) && !defined (__BEOS__) && !defined(__serenity__)
|
||||
-# if !defined (__ANDROID__) && !defined (__BEOS__) && !defined(MK_OS_ZOS)
|
||||
+# if !defined (__ANDROID__) && !defined (__BEOS__) && !defined(MK_OS_ZOS) && !defined(__serenity__)
|
||||
# include <ar.h>
|
||||
# else
|
||||
/* These platforms don't have <ar.h> but have archives in the same format
|
||||
|
|
|
@ -8,10 +8,10 @@ Subject: [PATCH] Hardcode default path because `confstr` is missing
|
|||
1 file changed, 4 insertions(+)
|
||||
|
||||
diff --git a/src/job.c b/src/job.c
|
||||
index 8116855..914935a 100644
|
||||
index ea885614a3862ea1a40d2ed12d78985c17d2ceb7..28d12a84cd9406633b4c8868fbc7527e07e56942 100644
|
||||
--- a/src/job.c
|
||||
+++ b/src/job.c
|
||||
@@ -2387,6 +2387,7 @@ child_execute_job (struct childbase *child, int good_stdin, char **argv)
|
||||
@@ -2430,6 +2430,7 @@ child_execute_job (struct childbase *child, int good_stdin, char **argv)
|
||||
/* execvp() will use a default PATH if none is set; emulate that. */
|
||||
if (p == NULL)
|
||||
{
|
||||
|
@ -19,7 +19,7 @@ index 8116855..914935a 100644
|
|||
size_t l = confstr (_CS_PATH, NULL, 0);
|
||||
if (l)
|
||||
{
|
||||
@@ -2394,6 +2395,9 @@ child_execute_job (struct childbase *child, int good_stdin, char **argv)
|
||||
@@ -2437,6 +2438,9 @@ child_execute_job (struct childbase *child, int good_stdin, char **argv)
|
||||
confstr (_CS_PATH, dp, l);
|
||||
p = dp;
|
||||
}
|
|
@ -5,6 +5,8 @@
|
|||
Include ar.h for serenity as well
|
||||
|
||||
|
||||
## `0002-Hardcode-default-path-because-is-missing.patch`
|
||||
## `0002-Hardcode-default-path-because-confstr-is-missing.patch`
|
||||
|
||||
Hardcode default path because `confstr` is missing
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue