projects
/
openwrt
/
staging
/
pepe2k.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
287303b
)
openssl: passing cflags to configure
author
Jitao Lu
<
[email protected]
>
Wed, 14 Jun 2023 09:25:03 +0000
(17:25 +0800)
committer
Hauke Mehrtens
<
[email protected]
>
Sat, 17 Jun 2023 10:56:58 +0000
(12:56 +0200)
openssl sets additional cflags in its configuration script. We need to
make it aware of our custom cflags to avoid adding conflicting cflags.
Fixes: #12866
Signed-off-by: Jitao Lu <
[email protected]
>
(cherry picked from commit
51f57e7c2dd2799e34036ec74b3436bf490fade0
)
package/libs/openssl/Makefile
patch
|
blob
|
history
diff --git
a/package/libs/openssl/Makefile
b/package/libs/openssl/Makefile
index d25f1aba6c13d6b7e0348900149e109cb36fecb5..fa359b7e1a0358bdba0ba3f825913c37eaccc6cf 100644
(file)
--- a/
package/libs/openssl/Makefile
+++ b/
package/libs/openssl/Makefile
@@
-11,7
+11,7
@@
PKG_NAME:=openssl
PKG_BASE:=1.1.1
PKG_BUGFIX:=u
PKG_VERSION:=$(PKG_BASE)$(PKG_BUGFIX)
-PKG_RELEASE:=
1
+PKG_RELEASE:=
2
PKG_USE_MIPS16:=0
PKG_BUILD_PARALLEL:=1
@@
-332,6
+332,7
@@
define Build/Configure
--libdir=lib \
--openssldir=/etc/ssl \
--cross-compile-prefix="$(TARGET_CROSS)" \
+ $(TARGET_CFLAGS) \
$(TARGET_CPPFLAGS) \
$(TARGET_LDFLAGS) \
$(OPENSSL_OPTIONS) && \