forked from domob1812/namecoin-core
-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
137 changed files
with
15,791 additions
and
4,966 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
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[main] | ||
host = https://www.transifex.com | ||
|
||
[o:bitcoin:p:bitcoin:r:qt-translation-027x] | ||
[o:bitcoin:p:bitcoin:r:qt-translation-028x] | ||
file_filter = src/qt/locale/bitcoin_<lang>.xlf | ||
source_file = src/qt/locale/bitcoin_en.xlf | ||
source_lang = en |
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
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
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
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
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
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
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 |
---|---|---|
@@ -1,14 +1,9 @@ | ||
From aad25427e74f387412e8bc9a9d7bbc6c496c792f Mon Sep 17 00:00:00 2001 | ||
From: Andrew Chow <[email protected]> | ||
Date: Wed, 6 Jul 2022 16:49:41 -0400 | ||
Subject: [PATCH] guix: remap guix store paths to /usr | ||
Without ffile-prefix-map, the debug symbols will contain paths for the | ||
guix store which will include the hashes of each package. However, the | ||
hash for the same package will differ when on different architectures. | ||
In order to be reproducible regardless of the architecture used to build | ||
the package, map all guix store prefixes to something fixed, e.g. /usr. | ||
|
||
--- | ||
libgcc/Makefile.in | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git a/libgcc/Makefile.in b/libgcc/Makefile.in | ||
index 851e7657d07..476c2becd1c 100644 | ||
--- a/libgcc/Makefile.in | ||
+++ b/libgcc/Makefile.in | ||
@@ -854,7 +854,7 @@ endif | ||
|
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,17 @@ | ||
Without ffile-prefix-map, the debug symbols will contain paths for the | ||
guix store which will include the hashes of each package. However, the | ||
hash for the same package will differ when on different architectures. | ||
In order to be reproducible regardless of the architecture used to build | ||
the package, map all guix store prefixes to something fixed, e.g. /usr. | ||
|
||
--- a/mingw-w64-libraries/winpthreads/Makefile.in | ||
+++ b/mingw-w64-libraries/winpthreads/Makefile.in | ||
@@ -478,7 +478,7 @@ top_build_prefix = @top_build_prefix@ | ||
top_builddir = @top_builddir@ | ||
top_srcdir = @top_srcdir@ | ||
SUBDIRS = . tests | ||
-AM_CFLAGS = -Wall -DWIN32_LEAN_AND_MEAN $(am__append_1) | ||
+AM_CFLAGS = -Wall -DWIN32_LEAN_AND_MEAN $(am__append_1) $(shell find /gnu/store -maxdepth 1 -mindepth 1 -type d -exec echo -n " -ffile-prefix-map={}=/usr" \;) | ||
ACLOCAL_AMFLAGS = -I m4 | ||
lib_LTLIBRARIES = libwinpthread.la | ||
include_HEADERS = include/pthread.h include/sched.h include/semaphore.h include/pthread_unistd.h include/pthread_time.h include/pthread_compat.h include/pthread_signal.h |
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
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
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
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,17 @@ | ||
build: remove explicit -lm link from qttools | ||
|
||
This causes issues with at least the macOS cross build, and shouldn't | ||
actually be required anywhere else. GCC with libstdc++ will already get libm. | ||
|
||
--- a/qtbase/src/corelib/tools/tools.pri | ||
+++ b/qtbase/src/corelib/tools/tools.pri | ||
@@ -111,9 +111,6 @@ qtConfig(easingcurve) { | ||
tools/qtimeline.cpp | ||
} | ||
|
||
-# Note: libm should be present by default becaue this is C++ | ||
-unix:!macx-icc:!vxworks:!haiku:!integrity:!wasm: LIBS_PRIVATE += -lm | ||
- | ||
TR_EXCLUDE += ../3rdparty/* | ||
|
||
# MIPS DSP |
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,24 @@ | ||
commit ff231d267370493814f933d151441866bf1e200b | ||
Author: Min RK <[email protected]> | ||
Date: Fri Feb 23 13:21:08 2024 +0100 | ||
|
||
Problem: cmake search for kqueue missing headers | ||
|
||
Solution: include sys/types.h and sys/time.h as documented by kqueue | ||
and used in autotools | ||
|
||
fixes kqueue detection on openbsd | ||
|
||
diff --git a/CMakeLists.txt b/CMakeLists.txt | ||
index f956f3fd..814d5d46 100644 | ||
--- a/CMakeLists.txt | ||
+++ b/CMakeLists.txt | ||
@@ -380,7 +380,7 @@ endif(WIN32) | ||
|
||
if(NOT MSVC) | ||
if(POLLER STREQUAL "") | ||
- check_cxx_symbol_exists(kqueue sys/event.h HAVE_KQUEUE) | ||
+ check_cxx_symbol_exists(kqueue "sys/types.h;sys/event.h;sys/time.h" HAVE_KQUEUE) | ||
if(HAVE_KQUEUE) | ||
set(POLLER "kqueue") | ||
endif() |
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
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
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
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,10 @@ | ||
P2P and network changes | ||
----------------------- | ||
|
||
- Pay To Anchor(P2A) is a new standard witness output type for spending, | ||
a newly recognised output template. This allows for key-less anchor | ||
outputs, with compact spending conditions for additional efficiencies on | ||
top of an equivalent `sh(OP_TRUE)` output, in addition to the txid stability | ||
of the spending transaction. | ||
N.B. propagation of this output spending on the network will be limited | ||
until a sufficient number of nodes on the network adopt this upgrade. |
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
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
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
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
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
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
Oops, something went wrong.