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
From eb989be4081cf996bd7e7eb6a529bbc1dc483a59 Mon Sep 17 00:00:00 2001 | |
From: =?UTF-8?q?Ond=C5=99ej=20Kuzn=C3=ADk?= <[email protected]> | |
Date: Mon, 1 Nov 2021 17:12:35 +0000 | |
Subject: [PATCH] ITS#9733 Only use libltdl when SLAPD_MODULES is defined | |
--- | |
servers/slapd/overlays/ppolicy.c | 8 ++++++++ | |
1 file changed, 8 insertions(+) | |
diff --git a/servers/slapd/overlays/ppolicy.c b/servers/slapd/overlays/ppolicy.c |
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
#!/bin/bash | |
export DEBIAN_FRONTEND=noninteractive | |
sudo apt-get -y update | |
sudo apt-get -y install build-essential libtool automake pkg-config mingw-w64 | |
sudo update-alternatives --set i686-w64-mingw32-gcc \ | |
$(update-alternatives --list i686-w64-mingw32-gcc | grep -- -posix) | |
sudo update-alternatives --set i686-w64-mingw32-g++ \ | |
$(update-alternatives --list i686-w64-mingw32-g++ | grep -- -posix) |
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
FROM php:7.3-apache | |
RUN docker-php-ext-install pdo_mysql | |
RUN apt-get update && apt-get install -y \ | |
libssl-dev \ | |
openssl \ | |
ssl-cert \ | |
&& apt-get clean \ | |
&& rm -rf /var/lib/apt/lists/* \ | |
&& a2enmod ssl \ | |
&& a2enmod rewrite \ |
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
diff --git a/SanDeGo-qt.pro b/SanDeGo-qt.pro | |
index 640f993..97fd98d 100644 | |
--- a/SanDeGo-qt.pro | |
+++ b/SanDeGo-qt.pro | |
@@ -45,7 +45,7 @@ QMAKE_LFLAGS *= -fstack-protector-all --param ssp-buffer-size=1 | |
} | |
# for extra security on Windows: enable ASLR and DEP via GCC linker flags | |
win32:QMAKE_LFLAGS *= -Wl,--dynamicbase -Wl,--nxcompat | |
-win32:QMAKE_LFLAGS += -static-libgcc -static-libstdc++ | |
+win32:QMAKE_LFLAGS += -static -static-libgcc -static-libstdc++ |
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
diff --git a/depends/packages/bdb.mk b/depends/packages/bdb.mk | |
index 6c9876c..2f62094 100644 | |
--- a/depends/packages/bdb.mk | |
+++ b/depends/packages/bdb.mk | |
@@ -1,8 +1,8 @@ | |
package=bdb | |
-$(package)_version=4.8.30 | |
+$(package)_version=5.3.28 | |
$(package)_download_path=http://download.oracle.com/berkeley-db | |
$(package)_file_name=db-$($(package)_version).NC.tar.gz |
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
#!/bin/bash | |
# | |
# config.vm.provision "shell", :path => "vagrant-provision-bionic-mingw64.bash", :privileged => false | |
# | |
export DEBIAN_FRONTEND=noninteractive | |
SUDO='sudo -E' |
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
// ... snip ... | |
#include <arith_uint256.h> | |
// ... snip ... | |
class CMainParams : public CChainParams { | |
public: | |
CMainParams() { |
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant.configure("2") do |config| | |
config.vm.box = "ubuntu/bionic64" | |
config.vm.provider "virtualbox" do |vb| | |
vb.name = "wallet-builder" | |
vb.memory = 8192 | |
vb.cpus = 4 | |
vb.customize [ |
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
# | |
# docker build --tag bitzenyplus-yespower-0.5:xenial --cpuset-cpus="0,1" -f Dockerfile . | |
# | |
FROM ubuntu:xenial | |
RUN apt update -qq \ | |
&& apt upgrade -qq -y \ | |
&& apt install -qq -y \ | |
build-essential \ |
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
version: '2' | |
services: | |
# mysql | |
mysql: | |
container_name: "mysql" | |
image: mysql:5.7 | |
ports: | |
- '3306:3306' #デバッグ用 | |
environment: |
NewerOlder