File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,7 +4,10 @@ $(package)_version_suffix=u
44$(package)_download_path =https://www.openssl.org/source/old/$($(package ) _version)
55$(package)_file_name =$(package ) -$($(package ) _version)$($(package ) _version_suffix) .tar.gz
66$(package)_sha256_hash =ecd0c6ffb493dd06707d38b14bb4d8c2288bb7033735606569d8f90f89669d16
7- $(package)_patches =secure_getenv.patch
7+
8+ # PATCHES (must use +=, not =)
9+ $(package)_patches += secure_getenv.patch
10+ $(package)_patches += domd_cc.patch
811
912define $(package)_set_vars
1013$(package ) _config_env=AR="$($(package ) _ar) " RANLIB="$($(package ) _ranlib) " CC="$($(package ) _cc) "
6063
6164define $(package)_preprocess_cmds
6265 patch -p1 < $($(package ) _patch_dir) /secure_getenv.patch && \
66+ patch -p1 < $($(package ) _patch_dir) /domd_cc.patch && \
6367 sed -i.old "/define DATE/d" util/mkbuildinf.pl && \
6468 sed -i.old "s|engines apps test|engines|" Makefile.org && \
6569 sed -i.old "s# ^CC=.*#CC=$($(package)_cc)#" Configure
8084
8185define $(package)_postprocess_cmds
8286 rm -rf share bin etc
83- endef
87+ endef
Original file line number Diff line number Diff line change 1+ --- a/util/domd
2+ +++ b/util/domd
3+ @@ -31,7 +31,7 @@
4+ # We assume that perl is in your path. If you want to use a different
5+ # perl then uncomment the following line and fix the path to perl
6+ #
7+ - CC=clang
8+ + CC="${CC:-cc}"
You can’t perform that action at this time.
0 commit comments