mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-01-20 07:09:15 +01:00
The diff in the copied header is: ```diff < #if __STDC_VERSION__ >= 199901L --- > #if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L ``` From https://sourceware.org/git/?p=systemtap.git;a=commit;h=b8345d8e07b725a943a97b19aa4866e74baadd98.
13 lines
607 B
Makefile
13 lines
607 B
Makefile
package=systemtap
|
|
$(package)_version=5.3
|
|
$(package)_download_path=https://sourceware.org/ftp/systemtap/releases/
|
|
$(package)_file_name=$(package)-$($(package)_version).tar.gz
|
|
$(package)_sha256_hash=966a360fb73a4b65a8d0b51b389577b3c4f92a327e84aae58682103e8c65a69a
|
|
$(package)_patches=remove_SDT_ASM_SECTION_AUTOGROUP_SUPPORT_check.patch
|
|
|
|
define $(package)_preprocess_cmds
|
|
patch -p1 < $($(package)_patch_dir)/remove_SDT_ASM_SECTION_AUTOGROUP_SUPPORT_check.patch && \
|
|
mkdir -p $($(package)_staging_prefix_dir)/include/sys && \
|
|
cp includes/sys/sdt.h $($(package)_staging_prefix_dir)/include/sys/sdt.h
|
|
endef
|