From: Eugene Crosser Date: Sun, 20 Apr 2014 15:49:08 +0000 (+0400) Subject: Merge branch 'conduit-free' X-Git-Tag: 0.9.0.0~33 X-Git-Url: http://www.average.org/gitweb/?p=pdns-pipe-nmc.git;a=commitdiff_plain;h=3c383081597802c45ef5c6176c59d7d4880aea52;hp=e9bd43f05d25b506dab0344bc51e0211476b743a Merge branch 'conduit-free' --- diff --git a/README.md b/README.md index 47fbba5..32b144d 100644 --- a/README.md +++ b/README.md @@ -82,10 +82,9 @@ your resolvers. ## Status -Alpha. It is largely untested, and there are loose ends in the -functionality. For example, `delegate` does not work yet, version in the -`SOA` record is bogus. Some of the the problems are due to incomplete -and/or imprecise +Alpha. It is insufficiently tested, and there are loose ends in the +functionality. For example, version in the `SOA` record is bogus. +Some of the the problems are due to incomplete and/or imprecise [definition of the domain data format](https://wiki.namecoin.info/index.php?title=Domain_Name_Specification) on the wiki. That said, I am using it to access some of the `.bit` websites and did not notice anomalies so far. diff --git a/build b/build index a2eb755..319e038 100755 --- a/build +++ b/build @@ -1,9 +1,13 @@ #!/bin/sh file="pdns-pipe-nmc" -sfx="`uname -m`.`date +%Y-%m-%d`.git-`git rev-parse --verify HEAD | cut -c 1-7`" +sfx="linux-glibc6.`uname -m`.`date +%Y-%m-%d`.git-`git rev-parse --verify HEAD | cut -c 1-7`" echo "Making $file.$sfx" +# tried this: +#ghc --make -static -optc-static -optl-shared-libgcc -optl-static -optl-pthread +# but cannot make it "only glibc is shared". And with static glibc, +# getaddrinfo does not work on systems with different glibc. ghc --make "$file" case $? in 0) ;;