Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (384e2b2a667f36743832c33676dfcae4eb1e1eef)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Vlad Glagolev <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (384e2b2a667f36743832c33676dfcae4eb1e1eef)
  • Date: Fri, 6 Mar 2015 07:46:22 -0600

GIT changes to master grimoire by Vlad Glagolev <stealth AT sourcemage.org>:

libs/ldns/CONFIGURE | 5 +++--
libs/ldns/DEPENDS | 4 +++-
libs/ldns/HISTORY | 3 +++
3 files changed, 9 insertions(+), 3 deletions(-)

New commits:
commit 384e2b2a667f36743832c33676dfcae4eb1e1eef
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

ldns: added libressl build support

diff --git a/libs/ldns/CONFIGURE b/libs/ldns/CONFIGURE
index b9daa76..dd586c4 100755
--- a/libs/ldns/CONFIGURE
+++ b/libs/ldns/CONFIGURE
@@ -12,14 +12,15 @@ config_query_option LDNS_OPTS "Enable DANE support?" y \
"--enable-dane" \
"--disable-dane" &&

-if spell_ok openssl && is_version_less $(installed_version openssl) 1.0; then
+if spell_ok openssl && is_version_less $(installed_version openssl) 1.0 ||
spell_ok libressl; then
message "${MESSAGE_COLOR}WARNING: GOST support requires OpenSSL 1.0, which
is not installed. If you need it," &&
message "select 1.0 below to replace current
${DEFAULT_COLOR}$(installed_version openssl)${MESSAGE_COLOR} version with one
from OpenSSL 1.0 branch.${DEFAULT_COLOR}"
fi &&

config_query_list LDNS_OPENSSL "Which OpenSSL branch?" \
0.9 \
- 1.0 &&
+ 1.0 \
+ libressl &&

config_query_option LDNS_DRILL "Build and install drill?" n \
"--with-drill" "--without-drill" &&
diff --git a/libs/ldns/DEPENDS b/libs/ldns/DEPENDS
index 03e6093..4fd2a14 100755
--- a/libs/ldns/DEPENDS
+++ b/libs/ldns/DEPENDS
@@ -7,8 +7,10 @@ if [[ $LDNS_OPENSSL == "1.0" ]]; then
config_query_option LDNS_OPTS "Enable GOST support?" y \
"--enable-gost" \
"--disable-gost"
-else
+elif [[ $LDNS_OPENSSL == "0.9" ]]; then
depends openssl '--disable-gost'
+else
+ depends libressl '--disable-gost'
fi &&

optional_depends -sub PYTHON swig \
diff --git a/libs/ldns/HISTORY b/libs/ldns/HISTORY
index 352fc25..86d00d2 100644
--- a/libs/ldns/HISTORY
+++ b/libs/ldns/HISTORY
@@ -1,3 +1,6 @@
+2015-03-06 Vlad Glagolev <stealth AT sourcemage.org>
+ * DEPENDS, CONFIGURE: added libressl build support
+
2014-11-22 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: PATCHLEVEL++
* CONFIGURE: added missing options; corrected GOST notice



  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (384e2b2a667f36743832c33676dfcae4eb1e1eef), Vlad Glagolev, 03/06/2015

Archive powered by MHonArc 2.6.24.

Top of Page