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-Make-extern-declarations-in-header-file.patch refreshed for new version. 0001-Modify-include-dir.patch added to modify the dir of nonexist file. Signed-off-by: Wang Mingyu <[email protected]> Signed-off-by: Khem Raj <[email protected]>
- Loading branch information
1 parent
730c856
commit 65bc872
Showing
3 changed files
with
36 additions
and
19 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 |
---|---|---|
|
@@ -10,8 +10,7 @@ Upstream-Status: Pending | |
Signed-off-by: Khem Raj <[email protected]> | ||
--- | ||
fdesign/sp_spinner.c | 2 +- | ||
lib/flinternal.h | 4 ++-- | ||
2 files changed, 3 insertions(+), 3 deletions(-) | ||
1 files changed, 1 insertions(+), 1 deletions(-) | ||
|
||
diff --git a/fdesign/sp_spinner.c b/fdesign/sp_spinner.c | ||
index 04f2c19..6206daa 100644 | ||
|
@@ -26,20 +25,6 @@ index 04f2c19..6206daa 100644 | |
|
||
|
||
/*************************************** | ||
diff --git a/lib/flinternal.h b/lib/flinternal.h | ||
index 06d847e..577bd10 100644 | ||
--- a/lib/flinternal.h | ||
+++ b/lib/flinternal.h | ||
@@ -138,8 +138,8 @@ enum { | ||
|
||
/* events.c or event related */ | ||
|
||
-FL_OBJECT * fli_handled_obj; | ||
-FL_OBJECT * fli_handled_parent; | ||
+extern FL_OBJECT * fli_handled_obj; | ||
+extern FL_OBJECT * fli_handled_parent; | ||
|
||
void fli_obj_queue_delete( void ); | ||
|
||
-- | ||
2.28.0 | ||
|
33 changes: 33 additions & 0 deletions
33
meta-oe/recipes-graphics/libforms/files/0001-Modify-include-dir.patch
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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
From d2d05928342f7f9f687ffea5e0b77f97f0ae5aad Mon Sep 17 00:00:00 2001 | ||
From: Wang Mingyu <[email protected]> | ||
Date: Wed, 7 Sep 2022 14:29:13 +0900 | ||
Subject: [PATCH] Modify include dir | ||
|
||
error messagge: | ||
../../xforms-1.2.4/lib/fd/cmdbr.h:28:10: fatal error: ../include/forms.h: No such file or directory | ||
|
||
../include/forms.h specified in the header file cmdbr.h is not exist. | ||
|
||
Upstream-Status: Pending | ||
|
||
Signed-off-by: Wang Mingyu <[email protected]> | ||
--- | ||
lib/fd/cmdbr.h | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git a/lib/fd/cmdbr.h b/lib/fd/cmdbr.h | ||
index 8495e05..2ddeced 100644 | ||
--- a/lib/fd/cmdbr.h | ||
+++ b/lib/fd/cmdbr.h | ||
@@ -25,7 +25,7 @@ | ||
#ifndef FD_cmd_h_ | ||
#define FD_cmd_h_ | ||
|
||
-#include "../include/forms.h" | ||
+#include "include/forms.h" | ||
|
||
/* Callbacks, globals and object handlers */ | ||
|
||
-- | ||
2.25.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