From 04b88f5a48be1ff2dc49bbe55821781ad104c110 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Stefan=20B=C3=BChler?= Date: Tue, 19 Nov 2013 12:50:18 +0100 Subject: [PATCH] fix bindbackend build with new automake versions new automake versions generate .hh from .yy with yacc, older versions generate .h copy the .hh -> .h rule from pdns/Makefile.am --- modules/bindbackend/Makefile.am | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/bindbackend/Makefile.am b/modules/bindbackend/Makefile.am index bedfd5029b..5686f03770 100644 --- a/modules/bindbackend/Makefile.am +++ b/modules/bindbackend/Makefile.am @@ -14,3 +14,7 @@ libbindbackend_la_LDFLAGS=-module -avoid-version ../../pdns/bind-dnssec.schema.sqlite3.sql.h: ../../pdns/bind-dnssec.schema.sqlite3.sql ( echo 'static char sqlCreate[] __attribute__((unused))=' ; sed 's/$$/"/g' ../../pdns/bind-dnssec.schema.sqlite3.sql | sed 's/^/"/g' ; echo ';' ) > $@ + +# for bindparser.h/hh +.hh.h: + cp $< $@ -- 2.47.2