Follow-up to the doc rebrand, addressing the previously out-of-scope legacy: - Currency unit: strCurrencyUnits (chainparams.cpp) and CURRENCY_UNIT (amount.cpp) "HUSH" -> "DRAGONX". Both are display-only (RPC help + metrics); no logic comparisons, verified. - depends mirrors: libsodium/boost/utfcpp fetched from git.hush.is/attachments; repointed to canonical upstream (GitHub release / archives.boost.io / GitHub tag) with the existing sha256 hashes verified to match those sources. - Seeds: nodes_main.txt now lists the five node[1-5].dragonx.is IPs (DNS-resolved) instead of Hush nodes; regenerated src/chainparamsseeds.h (was compiling Hush seed IPs as the fixed fallback); generate-seeds.py header now says DragonX; hush_seed_nodes.txt updated to DragonX seeds. - Deleted Hush-history / wrong-for-DragonX files: contrib/snapshot/ (block-500000 Hush airdrop, ~10MB), notary_seeds.txt (Hush notaries; DragonX isn't notarized), and the Hush emission scripts hush_supply, hush_supply_old, hush_halvings, hush_block_subsidy_per_halving (hardcode Hush's 340000/12.5 economics). Kept: hush_scanner (engine invoked by dragonx_scanner) and the "The Hush developers" copyright headers (lineage credit). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
34 lines
885 B
Makefile
34 lines
885 B
Makefile
package=libsodium
|
|
$(package)_version=1.0.18
|
|
$(package)_download_path=https://github.com/jedisct1/libsodium/releases/download/1.0.18-RELEASE
|
|
$(package)_file_name=libsodium-1.0.18.tar.gz
|
|
$(package)_download_file=libsodium-1.0.18.tar.gz
|
|
$(package)_sha256_hash=6f504490b342a4f8a4c4a02fc9b866cbef8622d5df4e5452b46be121e46636c1
|
|
$(package)_dependencies=
|
|
$(package)_config_opts=
|
|
$(package)_cflags=-std=gnu17
|
|
|
|
ifeq ($(build_os),darwin)
|
|
define $(package)_set_vars
|
|
$(package)_build_env=MACOSX_DEPLOYMENT_TARGET="10.11"
|
|
$(package)_cc=clang
|
|
$(package)_cxx=clang++
|
|
endef
|
|
endif
|
|
|
|
define $(package)_preprocess_cmds
|
|
cd $($(package)_build_subdir); ./autogen.sh
|
|
endef
|
|
|
|
define $(package)_config_cmds
|
|
$($(package)_autoconf) --enable-static --disable-shared
|
|
endef
|
|
|
|
define $(package)_build_cmds
|
|
$(MAKE)
|
|
endef
|
|
|
|
define $(package)_stage_cmds
|
|
$(MAKE) DESTDIR=$($(package)_staging_dir) install
|
|
endef
|