]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Use getconf LFS_{CFLAGS,LDFLAGS,LIBS} to get flags to compile lib/dns/gen
authorOndřej Surý <ondrej@sury.org>
Mon, 27 May 2019 14:11:11 +0000 (16:11 +0200)
committerOndřej Surý <ondrej@sury.org>
Wed, 29 May 2019 04:58:41 +0000 (06:58 +0200)
On some systems (namely Debian buster armhf) the readdir() call fails
with `Value too large for defined data type` unless the
_FILE_OFFSET_BITS=64 is defined.  The correct way to fix this is to
get the appropriate compilation parameters from getconf system
interface.

lib/dns/Makefile.in

index dc9d521632aad2614aa6a5aeb8daf72df1155c78..b7693f0921442444d7f2da396c1da4b3eb64be72 100644 (file)
@@ -167,9 +167,14 @@ include/dns/rdatastruct.h: gen \
 code.h:        gen
        ./gen -s ${srcdir} > code.h || { rm -f $@ ; exit 1; }
 
+gen: LFS_CFLAGS  = `getconf LFS_CFLAGS 2>/dev/null`
+gen: LFS_LDFLAGS = `getconf LFS_LDFLAGS 2>/dev/null`
+gen: LFS_LIBS    = `getconf LFS_LIBS 2>/dev/null`
 gen: gen.c
        ${BUILD_CC} ${BUILD_CFLAGS} -I${top_srcdir}/lib/isc/include \
-       ${BUILD_CPPFLAGS} ${BUILD_LDFLAGS} -o $@ ${srcdir}/gen.c ${BUILD_LIBS}
+       ${LFS_CFLAGS} ${LFS_LDFLAGS} \
+       ${BUILD_CPPFLAGS} ${BUILD_LDFLAGS} -o $@ ${srcdir}/gen.c \
+       ${BUILD_LIBS} ${LFS_LIBS}
 
 timestamp: include libdns.@A@
        touch timestamp