diff options
author | Thomas Markwalder <tmark@isc.org> | 2019-03-19 08:36:50 -0400 |
---|---|---|
committer | Thomas Markwalder <tmark@isc.org> | 2019-03-19 08:36:50 -0400 |
commit | cc35f84943df44dac2499f3e16e8aaba7d54191d (patch) | |
tree | f04ca6597a4c070b2c804823bfcccabbf90f41ea | |
parent | 85ef0d90e2ab5eee758242d5a094c1d12ce24576 (diff) | |
download | isc-dhcp-cc35f84943df44dac2499f3e16e8aaba7d54191d.tar.gz |
[master] Avoid Bind9 python dependency
merges [#3,!1] Avoid Bind9 python dependency
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | util/Makefile.bind.in | 2 | ||||
-rw-r--r-- | util/bind.sh | 1 |
3 files changed, 3 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index a7974385..6ed9a948 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([DHCP],[4.4.1],[dhcp-users@isc.org]) +AC_INIT([DHCP],[4.4.2-dev],[dhcp-users@isc.org]) # we specify "foreign" to avoid having to have the GNU mandated files, diff --git a/util/Makefile.bind.in b/util/Makefile.bind.in index 36ff48ef..107ce159 100644 --- a/util/Makefile.bind.in +++ b/util/Makefile.bind.in @@ -23,7 +23,7 @@ exec_prefix = @exec_prefix@ bindconfig = --without-openssl --without-libxml2 --without-libjson \ --without-gssapi --disable-threads --without-lmdb \ - --includedir=@includedir@ --libdir=@libdir@ \ + --includedir=@includedir@ --libdir=@libdir@ --without-python\ @BINDLT@ @BINDIOMUX@ @BINDCONFIG@ --enable-full-report @BIND_ATF_FALSE@cleandirs = ./lib ./include diff --git a/util/bind.sh b/util/bind.sh index 180fef4a..9d555bff 100644 --- a/util/bind.sh +++ b/util/bind.sh @@ -73,6 +73,7 @@ case $# in ### For ease of use, this records the sticky tag of versions ### released with each point release. ### + 4.4.2-dev) noSNAP=snapshot BINDTAG=v9_11 ;; 4.4.1) noSNAP=snapshot BINDTAG=v9_11_2_P1 ;; 4.4.0) noSNAP=snapshot BINDTAG=v9_11_2_P1 ;; 4.4.0b1) noSNAP=snapshot BINDTAG=v9_11_2 ;; |